@digitalsee-ai/rcs 0.0.15 → 1.0.1
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/README.md +69 -237
- package/dist/components/digitalsee/workflow/Canvas/NextConfigModalWrapper.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvas.d.ts +4 -0
- package/dist/components/digitalsee/workflow/Canvas/NextWorkflowCanvasHeader.d.ts +15 -0
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvas.d.ts +1 -12
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvasBase.d.ts +4 -0
- package/dist/components/digitalsee/workflow/Canvas/WorkflowCanvasHeader.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Canvas/color.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Canvas/constants.d.ts +75 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/createNodeAddHandlerNext.d.ts +49 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useCanvasApi.d.ts +22 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useDataLoading.d.ts +21 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeAddCallback.d.ts +44 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useNodeFormDraftCache.d.ts +14 -0
- package/dist/components/digitalsee/workflow/Canvas/hooks/useWorkflowCanvasState.d.ts +78 -0
- package/dist/components/digitalsee/workflow/Canvas/types.d.ts +91 -0
- package/dist/components/digitalsee/workflow/Edges/BaseEdge.d.ts +3 -2
- package/dist/components/digitalsee/workflow/Edges/EdgeFactory.d.ts +43 -0
- package/dist/components/digitalsee/workflow/NextNodesConfigModal/index.d.ts +13 -0
- package/dist/components/digitalsee/workflow/Nodes/ActionNode.d.ts +3 -3
- package/dist/components/digitalsee/workflow/Nodes/AgentNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/BrowserNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/CustomNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/NextNodeFactory.d.ts +11 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextActionNode.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextBaseNode.d.ts +15 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextConditionNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextLoopNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextSwitchNode.d.ts +10 -0
- package/dist/components/digitalsee/workflow/Nodes/NextNodes/NextTriggerNode.d.ts +9 -0
- package/dist/components/digitalsee/workflow/Nodes/NodeFactory.d.ts +3 -12
- package/dist/components/digitalsee/workflow/Nodes/StickyNoteNode.d.ts +2 -2
- package/dist/components/digitalsee/workflow/Nodes/SuperBaseNode.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeDescription.d.ts +16 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NextNodeOperations.d.ts +11 -0
- package/dist/components/digitalsee/workflow/Nodes/components/NodeOperations.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/ActionNodeConfig/index.d.ts +7 -1
- package/dist/components/digitalsee/workflow/NodesConfig/ConditionNodeConfig/index.d.ts +5 -4
- package/dist/components/digitalsee/workflow/NodesConfig/ErrorHandler.d.ts +17 -2
- package/dist/components/digitalsee/workflow/NodesConfig/LoopNodeConfig/index.d.ts +2 -3
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CreateCredentialModal.d.ts +13 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/CredentialSelect.d.ts +17 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/ModifyCredentialModal.d.ts +17 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/fieldSchemaAdapter.d.ts +10 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/fieldSchemaAdapter.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/NextNodeConfig/index.d.ts +15 -0
- package/dist/components/digitalsee/workflow/NodesConfig/SwitchNodeConfig/index.d.ts +6 -5
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/CreateAccountModal/index.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/CredentialAccountForm.d.ts +10 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/DateField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/DateTimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/ExtendObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/FixedObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/PasswordField/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TextAreaField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TextField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/fields/TimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/DynamicAccountForm/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/components/ModifyAccountModal/index.d.ts +3 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/AccountSelect/index.d.ts +5 -3
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/components/AIFormField.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/DateField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/DateTimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/FixedObjectField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/HourMinuteField/index.d.ts +5 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/common-placeholder-theme.d.ts +11 -11
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JavascriptTagEditorField/editor.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/interface.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/keywords.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/common-placeholder-theme.d.ts +11 -11
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/interface.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/plugin/keywords.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JsonTagField/plugin/keywords.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{MutilRowAIExtractConfigField → MultiRowAIExtractConfigField}/index.d.ts +2 -2
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/RichTagInput/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/RichTagInput/useVariableInfo.d.ts +13 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/TextField/index.d.ts +2 -2
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/TimeField/index.d.ts +1 -1
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/index.d.ts +3 -3
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/next-compatible.d.ts +2 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/next-compatible.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeSettings.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextNodeTest.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/index.d.ts +6 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/variable-tree-next.d.ts +49 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/NextVariableModal/variable-tree-next.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/components/VariableModal/index.d.ts +2 -1
- package/dist/components/digitalsee/workflow/NodesConfig/context.d.ts +4 -0
- package/dist/components/digitalsee/workflow/NodesConfig/define/actions.d.ts +3 -3
- package/dist/components/digitalsee/workflow/NodesConfig/define/condition.d.ts +5 -58
- package/dist/components/digitalsee/workflow/NodesConfig/define/condition.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/NodesConfig/define/flow.d.ts +1 -26
- package/dist/components/digitalsee/workflow/NodesConfig/index.d.ts +3 -6
- package/dist/components/digitalsee/workflow/NodesConfig/utils/credentialRequirement.d.ts +17 -0
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/components/CategoryTabs.d.ts +1 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/types.d.ts +17 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/dataTransformers.d.ts +2 -1
- package/dist/components/digitalsee/workflow/Panels/ModernNodeSelectorPanel/utils/dataTransformers.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/components/NodeListItem.d.ts +8 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/hooks/useNodeList.d.ts +14 -0
- package/dist/components/digitalsee/workflow/Panels/SimpleNodeSelectorPanel/index.d.ts +9 -0
- package/dist/components/digitalsee/workflow/api/dip.d.ts +311 -0
- package/dist/components/digitalsee/workflow/api/dip.types.d.ts +996 -0
- package/dist/components/digitalsee/workflow/api/index.d.ts +38 -13
- package/dist/components/digitalsee/workflow/api/index.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/controls/MultiRowGuard/index.d.ts +13 -0
- package/dist/components/digitalsee/workflow/builtin/controls/{MutilRowGuard → MultiRowGuard}/types.d.ts +15 -23
- package/dist/components/digitalsee/workflow/builtin/controls/MutilRowGuard/index.d.ts +9 -9
- package/dist/components/digitalsee/workflow/builtin/globalConfig/index.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/service.d.ts +8 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/service.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/builtin/globalConfig/types.d.ts +17 -0
- package/dist/components/digitalsee/workflow/config/globalConfig.d.ts +1 -1
- package/dist/components/digitalsee/workflow/constants/nextHandles.d.ts +1 -0
- package/dist/components/digitalsee/workflow/enums/canvas.d.ts +63 -0
- package/dist/components/digitalsee/workflow/enums/edge.d.ts +10 -0
- package/dist/components/digitalsee/workflow/enums/handle.d.ts +42 -0
- package/dist/components/digitalsee/workflow/enums/index.d.ts +5 -0
- package/dist/components/digitalsee/workflow/enums/node.d.ts +199 -0
- package/dist/components/digitalsee/workflow/enums/workflow.d.ts +90 -0
- package/dist/components/digitalsee/workflow/events/eventBus.d.ts +8 -2
- package/dist/components/digitalsee/workflow/hooks/use-before-unload.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/useCanvasLayout.d.ts +2 -1
- package/dist/components/digitalsee/workflow/hooks/useHandleConnections.d.ts +1 -1
- package/dist/components/digitalsee/workflow/hooks/usePanel.d.ts +26 -0
- package/dist/components/digitalsee/workflow/hooks/useVariables.d.ts +52 -0
- package/dist/components/digitalsee/workflow/hooks/useWorkflow.d.ts +3 -3
- package/dist/components/digitalsee/workflow/index.d.ts +23 -6
- package/dist/components/digitalsee/workflow/store/index.d.ts +17 -0
- package/dist/components/digitalsee/workflow/store/panelSlice.d.ts +5 -5
- package/dist/components/digitalsee/workflow/store/workflowSlice.d.ts +44 -0
- package/dist/components/digitalsee/workflow/store/workflowSlice.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/types/Edge.d.ts +1 -3
- package/dist/components/digitalsee/workflow/types/Handle.d.ts +3 -29
- package/dist/components/digitalsee/workflow/types/Node.d.ts +25 -63
- package/dist/components/digitalsee/workflow/types/NodeProtocol.d.ts +1 -12
- package/dist/components/digitalsee/workflow/types/Workflow.d.ts +4 -26
- package/dist/components/digitalsee/workflow/types/engine.d.ts +9 -0
- package/dist/components/digitalsee/workflow/utils/common.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/flowDataAdapterNext.d.ts +13 -0
- package/dist/components/digitalsee/workflow/utils/glob.d.ts +1 -1
- package/dist/components/digitalsee/workflow/utils/layoutUtils.d.ts +2 -3
- package/dist/components/digitalsee/workflow/utils/mergeConfig.d.ts +3 -6
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.d.ts +6 -0
- package/dist/components/digitalsee/workflow/utils/nextNodeSchemaCache.test.d.ts +1 -0
- package/dist/components/digitalsee/workflow/utils/nodeDataFormatter.d.ts +1 -1
- package/dist/components/digitalsee/workflow/utils/nodeDataFormatterNext.d.ts +11 -0
- package/dist/components/digitalsee/workflow/utils/nodeSummaryAdapter.d.ts +15 -0
- package/dist/components/dynamic-form/DynamicForm.d.ts +8 -3
- package/dist/components/dynamic-form/DynamicForm.test.d.ts +1 -0
- package/dist/components/dynamic-form/DynamicFormContext.d.ts +4 -0
- package/dist/components/dynamic-form/FieldRenderer.d.ts +6 -2
- package/dist/components/dynamic-form/components/ValueModeWrapper/index.d.ts +7 -1
- package/dist/components/dynamic-form/components/VariableInput/index.d.ts +1 -0
- package/dist/components/dynamic-form/fields/complex/KeyValueField.test.d.ts +1 -0
- package/dist/components/dynamic-form/fields/index.d.ts +12 -0
- package/dist/components/dynamic-form/index.d.ts +6 -6
- package/dist/components/dynamic-form/registry/createFieldComponent.test.d.ts +1 -0
- package/dist/components/dynamic-form/registry/index.d.ts +2 -2
- package/dist/components/dynamic-form/types/field-component.d.ts +12 -3
- package/dist/locales/en-US/common.d.ts +8 -17
- package/dist/locales/en-US/components.d.ts +28 -0
- package/dist/locales/en-US/link/flow.d.ts +9 -5
- package/dist/locales/en-US.d.ts +42 -22
- package/dist/locales/index.d.ts +2 -714
- package/dist/locales/zh-CN/common.d.ts +8 -17
- package/dist/locales/zh-CN/components.d.ts +28 -0
- package/dist/locales/zh-CN/link/flow.d.ts +9 -5
- package/dist/locales/zh-CN.d.ts +42 -22
- package/dist/locales/zh-TW/common.d.ts +8 -17
- package/dist/locales/zh-TW/components.d.ts +28 -0
- package/dist/locales/zh-TW/link/flow.d.ts +9 -5
- package/dist/locales/zh-TW.d.ts +42 -22
- package/dist/postcss.config.js +1 -0
- package/dist/rcs.css +1 -1
- package/dist/rcs.es.js +55726 -50708
- package/dist/rcs.es.js.map +1 -0
- package/dist/rcs.umd.js +68 -67
- package/dist/rcs.umd.js.map +1 -0
- package/package.json +148 -151
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/HourMiniuteField/index.d.ts +0 -5
- package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/JavscriptTagEditorField/editor.d.ts +0 -1
- package/dist/components/digitalsee/workflow/NodesConfig/define/config-form-item.d.ts +0 -40
- package/dist/components/digitalsee/workflow/de.d.ts +0 -1
- package/dist/components/digitalsee/workflow/types/SaveStatus.d.ts +0 -1
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/extensions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/index.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/base-theme.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/custom-completions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/functions.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/hint.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/NodesConfig/components/FormFieldRenderer/fields/{JavscriptTagEditorField → JavascriptTagEditorField}/plugin/placeholders.d.ts +0 -0
- /package/dist/components/digitalsee/workflow/hooks/{use-wokflow-id.d.ts → use-workflow-id.d.ts} +0 -0
package/dist/locales/index.d.ts
CHANGED
|
@@ -1,721 +1,9 @@
|
|
|
1
1
|
import { IntlShape } from 'react-intl';
|
|
2
2
|
export type LocaleType = 'zh-CN' | 'zh-TW' | 'en-US';
|
|
3
|
+
type LocaleMessages = Record<string, string>;
|
|
3
4
|
type TranslateMessageValues = Parameters<IntlShape['formatMessage']>[1];
|
|
4
5
|
export type TranslateFn = (id: string, values?: TranslateMessageValues) => string;
|
|
5
|
-
export declare const getLocaleMessages: (locale: LocaleType) =>
|
|
6
|
-
'link.flow.start_node': string;
|
|
7
|
-
'link.flow.end_node': string;
|
|
8
|
-
'link.flow.unconfig_action_node': string;
|
|
9
|
-
'link.flow.select_location_node': string;
|
|
10
|
-
'link.flow.forced_online_warn': string;
|
|
11
|
-
'link.flow.online_forced_tip1': string;
|
|
12
|
-
'link.flow.online_forced_tip2': string;
|
|
13
|
-
'link.flow.online_forced_tip3': string;
|
|
14
|
-
'link.flow.online_forced_tip4': string;
|
|
15
|
-
'link.flow.online_forced_tip5': string;
|
|
16
|
-
'link.flow.online_forced_tip6': string;
|
|
17
|
-
'link.flow.online-process': string;
|
|
18
|
-
'link.flow.editing-process': string;
|
|
19
|
-
'link.flow.forced_online': string;
|
|
20
|
-
'link.flow.execute': string;
|
|
21
|
-
'link.flow.log': string;
|
|
22
|
-
'link.flow.enter_template_name': string;
|
|
23
|
-
'link.flow.stream_upgrading': string;
|
|
24
|
-
'link.flow.online_this_process': string;
|
|
25
|
-
'link.flow.confirm_configuration': string;
|
|
26
|
-
'link.flow.online_success': string;
|
|
27
|
-
'link.flow.check_failed': string;
|
|
28
|
-
'link.flow.are_you_sure_to_delete': string;
|
|
29
|
-
'link.flow.process_checking': string;
|
|
30
|
-
'link.flow.manual_creation': string;
|
|
31
|
-
'link.flow.file_import': string;
|
|
32
|
-
'link.flow.please_upload_yaml_file': string;
|
|
33
|
-
'link.flow.file_size_limit_5MB': string;
|
|
34
|
-
'link.flow.import_connection_stream': string;
|
|
35
|
-
'link.flow.click_to_select_or_drag_file': string;
|
|
36
|
-
'link.flow.process_edit_auto_offline': string;
|
|
37
|
-
'link.flow.edit_running_process': string;
|
|
38
|
-
'link.flow.continue_editing': string;
|
|
39
|
-
'link.flow.current_read_only_mode': string;
|
|
40
|
-
'link.flow.modification_success': string;
|
|
41
|
-
'link.flow.modification_failed': string;
|
|
42
|
-
'link.flow.edit_connection_stream': string;
|
|
43
|
-
'link.flow.add_connection_stream': string;
|
|
44
|
-
'link.flow.stream_name': string;
|
|
45
|
-
'link.flow.please_enter_stream_name': string;
|
|
46
|
-
'link.flow.stream_description': string;
|
|
47
|
-
'link.flow.please_enter_description': string;
|
|
48
|
-
'link.flow.conditional_execution': string;
|
|
49
|
-
'link.flow.conditional_execution_description': string;
|
|
50
|
-
'link.flow.loop_execution': string;
|
|
51
|
-
'link.flow.loop_execution_description': string;
|
|
52
|
-
'link.flow.creating_node': string;
|
|
53
|
-
'link.flow.here_you_can': string;
|
|
54
|
-
'link.flow.insert_application': string;
|
|
55
|
-
'link.flow.or_add_execution_logic': string;
|
|
56
|
-
'link.flow.prompt': string;
|
|
57
|
-
'link.flow.confirm_delete_node': string;
|
|
58
|
-
'link.flow.deletion_success': string;
|
|
59
|
-
'link.flow.node_closed': string;
|
|
60
|
-
'link.flow.remark_modification_success': string;
|
|
61
|
-
'link.flow.please_enter_remark': string;
|
|
62
|
-
'link.flow.copy_success': string;
|
|
63
|
-
'link.flow.action': string;
|
|
64
|
-
'link.flow.execution_condition': string;
|
|
65
|
-
'link.flow.execution_condition_colon': string;
|
|
66
|
-
'link.flow.or': string;
|
|
67
|
-
'link.flow.if': string;
|
|
68
|
-
'link.flow.and': string;
|
|
69
|
-
'link.flow.trigger': string;
|
|
70
|
-
'link.flow.loop': string;
|
|
71
|
-
'link.flow.array': string;
|
|
72
|
-
'link.flow.expression': string;
|
|
73
|
-
'link.flow.loop_node_output': string;
|
|
74
|
-
'link.flow.not_selected': string;
|
|
75
|
-
'link.flow.code_editor': string;
|
|
76
|
-
'link.flow.exit_full_screen': string;
|
|
77
|
-
'link.flow.missing_configuration': string;
|
|
78
|
-
'link.flow.remove': string;
|
|
79
|
-
'link.flow.please_enter_variable_name': string;
|
|
80
|
-
'link.flow.variable_name': string;
|
|
81
|
-
'link.flow.please_select_condition': string;
|
|
82
|
-
'link.flow.select_condition': string;
|
|
83
|
-
'link.flow.value': string;
|
|
84
|
-
'link.flow.configure_action': string;
|
|
85
|
-
'link.flow.configure_trigger': string;
|
|
86
|
-
'link.flow.configuration_description': string;
|
|
87
|
-
'link.flow.description_usage': string;
|
|
88
|
-
'link.flow.array_type': string;
|
|
89
|
-
'link.flow.number_type': string;
|
|
90
|
-
'link.flow.condition_expression_type': string;
|
|
91
|
-
'link.flow.loop_start_end_check': string;
|
|
92
|
-
'link.flow.please_select_data_type': string;
|
|
93
|
-
'link.flow.condition_expression': string;
|
|
94
|
-
'link.flow.loop_start_end': string;
|
|
95
|
-
'link.flow.please_enter_loop_expression': string;
|
|
96
|
-
'link.flow.loop_expression': string;
|
|
97
|
-
'link.flow.please_select_loop_direction': string;
|
|
98
|
-
'link.flow.loop_head_to_tail': string;
|
|
99
|
-
'link.flow.loop_tail_to_head': string;
|
|
100
|
-
'link.flow.loop_processing': string;
|
|
101
|
-
'link.flow.please_select_loop_processing': string;
|
|
102
|
-
'link.flow.terminate_process': string;
|
|
103
|
-
'link.flow.continue_loop': string;
|
|
104
|
-
'link.flow.break_loop': string;
|
|
105
|
-
'link.flow.test_connection_success': string;
|
|
106
|
-
'link.flow.test_connection_failed': string;
|
|
107
|
-
'link.flow.creation_success': string;
|
|
108
|
-
'link.flow.modification_time': string;
|
|
109
|
-
'link.flow.edit_account': string;
|
|
110
|
-
'link.flow.please_select': string;
|
|
111
|
-
'link.flow.ciphertext': string;
|
|
112
|
-
'link.flow.text': string;
|
|
113
|
-
'link.flow.enter_keyword_to_search_action': string;
|
|
114
|
-
'link.flow.please_enter': string;
|
|
115
|
-
'link.flow.cannot_find_variable_output_node': string;
|
|
116
|
-
'link.flow.string': string;
|
|
117
|
-
'link.flow.script': string;
|
|
118
|
-
'link.flow.enter_keyword': string;
|
|
119
|
-
'link.flow.use_proxy_gateway': string;
|
|
120
|
-
'link.flow.do_not_use': string;
|
|
121
|
-
'link.flow.private_network_deployment': string;
|
|
122
|
-
'link.flow.proxy_gateway': string;
|
|
123
|
-
'link.flow.secure_connection': string;
|
|
124
|
-
'link.flow.click_test_and_preview': string;
|
|
125
|
-
'link.flow.clear_test_results': string;
|
|
126
|
-
'link.flow.test_failed': string;
|
|
127
|
-
'link.flow.check_configuration': string;
|
|
128
|
-
'link.flow.error_data': string;
|
|
129
|
-
'link.flow.sample_data': string;
|
|
130
|
-
'link.flow.request_failed': string;
|
|
131
|
-
'link.flow.all': string;
|
|
132
|
-
'link.flow.no_actions': string;
|
|
133
|
-
'link.flow.no_apps': string;
|
|
134
|
-
'link.flow.back': string;
|
|
135
|
-
'link.flow.node_data_yaml': string;
|
|
136
|
-
'link.flow.excute_immediately': string;
|
|
137
|
-
'link.flow.excute_immediately_tip': string;
|
|
138
|
-
'link.flow.excute_immediately_success': string;
|
|
139
|
-
'link.flow.stop_running': string;
|
|
140
|
-
'link.flow.switch.condition_one': string;
|
|
141
|
-
'link.flow.switch.condition_two': string;
|
|
142
|
-
'link.flow.switch.condition_n': string;
|
|
143
|
-
'link.flow.switch.branch_name_cannot_be_empty': string;
|
|
144
|
-
'link.flow.switch.branch_name_duplicate': string;
|
|
145
|
-
'link.flow.switch.enter_branch_name': string;
|
|
146
|
-
'link.flow.switch.move_to_top': string;
|
|
147
|
-
'link.flow.switch.move_up': string;
|
|
148
|
-
'link.flow.switch.move_down': string;
|
|
149
|
-
'link.flow.switch.move_to_bottom': string;
|
|
150
|
-
'link.flow.switch.at_least_one_branch': string;
|
|
151
|
-
'link.flow.switch.at_least_one_valid_branch': string;
|
|
152
|
-
'link.flow.switch.add_branch': string;
|
|
153
|
-
'link.flow.switch.max_branches_reached': string;
|
|
154
|
-
'common.cannot_chinese': string;
|
|
155
|
-
'common.please_enter_username_name_mobile': string;
|
|
156
|
-
'common.new_enterprise': string;
|
|
157
|
-
'common.javascript_expression': string;
|
|
158
|
-
'common.javascript_selection': string;
|
|
159
|
-
'common.readonly_not_mappable': string;
|
|
160
|
-
'common.add_mapping_rules': string;
|
|
161
|
-
'common.password': string;
|
|
162
|
-
'common.batch_delete': string;
|
|
163
|
-
'common.batch_revoke': string;
|
|
164
|
-
'common.batch_disable': string;
|
|
165
|
-
'app.common.btn.on': string;
|
|
166
|
-
'app.common.btn.off': string;
|
|
167
|
-
'app.common.btn.stopUse': string;
|
|
168
|
-
'common.turn_on': string;
|
|
169
|
-
'common.enabled': string;
|
|
170
|
-
'common.turn_off': string;
|
|
171
|
-
'common.disabled': string;
|
|
172
|
-
'common.delete': string;
|
|
173
|
-
'common.revoke': string;
|
|
174
|
-
'common.export': string;
|
|
175
|
-
'common.account': string;
|
|
176
|
-
'app.common.word.zhanghao': string;
|
|
177
|
-
'app.common.word.name': string;
|
|
178
|
-
'common.placeholder.search': string;
|
|
179
|
-
'common.name': string;
|
|
180
|
-
'app.common.word.email': string;
|
|
181
|
-
'common.mobile': string;
|
|
182
|
-
'app.common.word.organizational-structure': string;
|
|
183
|
-
'common.user-origin': string;
|
|
184
|
-
'app.common.word.expiration-date': string;
|
|
185
|
-
'app.common.word.status': string;
|
|
186
|
-
'app.common.word.normal': string;
|
|
187
|
-
'app.common.word.success': string;
|
|
188
|
-
'app.common.word.failed': string;
|
|
189
|
-
'app.common.word.disabled': string;
|
|
190
|
-
'app.common.word.temporarily-disabled': string;
|
|
191
|
-
'common.ineffective': string;
|
|
192
|
-
'common.inactivated': string;
|
|
193
|
-
'common.expired': string;
|
|
194
|
-
'common.deactivated': string;
|
|
195
|
-
'app.common.word.save': string;
|
|
196
|
-
'common.save_success': string;
|
|
197
|
-
'common.save_failed': string;
|
|
198
|
-
'app.common.word.back': string;
|
|
199
|
-
'app.common.word.cancel': string;
|
|
200
|
-
'app.common.word.version': string;
|
|
201
|
-
'app.common.placeholder.please-enter-name-description': string;
|
|
202
|
-
'app.common.word.operation': string;
|
|
203
|
-
'app.common.word.new': string;
|
|
204
|
-
'app.common.word.create': string;
|
|
205
|
-
'app.common.word.creator': string;
|
|
206
|
-
'app.common.word.creation-time': string;
|
|
207
|
-
'app.common.word.update-time': string;
|
|
208
|
-
'app.common.word.start-time': string;
|
|
209
|
-
'app.common.word.end-time': string;
|
|
210
|
-
'common.type': string;
|
|
211
|
-
'app.common.word.system': string;
|
|
212
|
-
'app.common.word.policy-name': string;
|
|
213
|
-
'app.common.word.tag-type': string;
|
|
214
|
-
'app.common.word.static-tag': string;
|
|
215
|
-
'app.common.word.dynamic-tag': string;
|
|
216
|
-
'common.edit': string;
|
|
217
|
-
'app.common.word.basic-information': string;
|
|
218
|
-
'app.common.btn.new-sub-organization': string;
|
|
219
|
-
'app.common.btn.new-enterprise': string;
|
|
220
|
-
'app.common.btn.new-application': string;
|
|
221
|
-
'app.common.btn.new-role': string;
|
|
222
|
-
'app.common.btn.new-authentication': string;
|
|
223
|
-
'app.common.btn.new-connector': string;
|
|
224
|
-
'app.common.btn.new-category': string;
|
|
225
|
-
'common.export-log': string;
|
|
226
|
-
'app.common.word.activated': string;
|
|
227
|
-
'app.common.word.not-enabled': string;
|
|
228
|
-
'common.deleted': string;
|
|
229
|
-
'app.common.word.application-store': string;
|
|
230
|
-
'app.common.word.custom-application': string;
|
|
231
|
-
'app.common.word.third-party-application': string;
|
|
232
|
-
'app.common.word.application-name': string;
|
|
233
|
-
'app.common.word.next-step': string;
|
|
234
|
-
'app.common.word.previous-step': string;
|
|
235
|
-
'app.common.word.save-and-next': string;
|
|
236
|
-
'app.common.word.finish': string;
|
|
237
|
-
'app.common.word.confirm': string;
|
|
238
|
-
'app.common.word.view-details': string;
|
|
239
|
-
'app.common.word.connector-list': string;
|
|
240
|
-
'app.common.word.create-connector': string;
|
|
241
|
-
'app.common.word.icon': string;
|
|
242
|
-
'app.common.word.upload': string;
|
|
243
|
-
'app.common.word.download': string;
|
|
244
|
-
'app.common.word.operating-time': string;
|
|
245
|
-
'common.number-of-tag-users': string;
|
|
246
|
-
'common.synchronization-period': string;
|
|
247
|
-
'common.sync': string;
|
|
248
|
-
'common.sync-status': string;
|
|
249
|
-
'app.common.word.connector-status': string;
|
|
250
|
-
'app.common.word.mapping': string;
|
|
251
|
-
'app.common.word.on-off': string;
|
|
252
|
-
'app.common.word.application-source': string;
|
|
253
|
-
'app.common.word.application-integration': string;
|
|
254
|
-
'app.common.word.default-application': string;
|
|
255
|
-
'app.common.word.application': string;
|
|
256
|
-
'app.common.word.token-management': string;
|
|
257
|
-
'app.common.word.application-information': string;
|
|
258
|
-
'app.common.word.authorization-management': string;
|
|
259
|
-
'app.common.word.application-selection': string;
|
|
260
|
-
'app.common.word.connector-flow': string;
|
|
261
|
-
'common.user': string;
|
|
262
|
-
'common.department': string;
|
|
263
|
-
'common.department-sort': string;
|
|
264
|
-
'app.common.word.address-book-integration': string;
|
|
265
|
-
'app.common.word.address-book-synchronization': string;
|
|
266
|
-
'app.common.word.filter': string;
|
|
267
|
-
'app.common.word.attribute': string;
|
|
268
|
-
'app.common.word.new-attribute': string;
|
|
269
|
-
'app.common.word.attribute-name': string;
|
|
270
|
-
'app.common.word.display-name': string;
|
|
271
|
-
'app.common.word.attribute-type': string;
|
|
272
|
-
'app.common.word.required': string;
|
|
273
|
-
'app.common.word.data-type': string;
|
|
274
|
-
'app.common.word.alias': string;
|
|
275
|
-
'common.string': string;
|
|
276
|
-
'common.boolean': string;
|
|
277
|
-
'common.number': string;
|
|
278
|
-
'common.object': string;
|
|
279
|
-
'app.common.word.value': string;
|
|
280
|
-
'app.common.word.basic-attribute': string;
|
|
281
|
-
'app.common.word.extended-attribute': string;
|
|
282
|
-
'app.common.word.all': string;
|
|
283
|
-
'app.common.word.finance': string;
|
|
284
|
-
'app.common.word.market': string;
|
|
285
|
-
'app.common.word.component-name': string;
|
|
286
|
-
'app.common.word.download-count': string;
|
|
287
|
-
'app.common.word.upload-time': string;
|
|
288
|
-
'app.common.word.active': string;
|
|
289
|
-
'app.common.word.inactive': string;
|
|
290
|
-
'app.common.word.pending': string;
|
|
291
|
-
'app.common.word.customer-management': string;
|
|
292
|
-
'app.common.word.collaboration': string;
|
|
293
|
-
'app.common.word.renshi': string;
|
|
294
|
-
'app.common.word.device-model': string;
|
|
295
|
-
'app.common.word.device-status': string;
|
|
296
|
-
'app.common.word.last-online-time': string;
|
|
297
|
-
'app.common.word.online': string;
|
|
298
|
-
'app.common.word.token-information': string;
|
|
299
|
-
'app.common.word.upload-token': string;
|
|
300
|
-
'app.common.word.refresh': string;
|
|
301
|
-
'app.common.word.application-list': string;
|
|
302
|
-
'app.common.word.login-time': string;
|
|
303
|
-
'app.common.word.source-ip': string;
|
|
304
|
-
'app.common.word.source-device': string;
|
|
305
|
-
'app.common.word.result': string;
|
|
306
|
-
'app.common.word.operation-result': string;
|
|
307
|
-
'common.user-account-behavior': string;
|
|
308
|
-
'common.user-screenshot-behavior': string;
|
|
309
|
-
'common.user-screen-recording-behavior': string;
|
|
310
|
-
'app.common.word.device-name': string;
|
|
311
|
-
'app.common.word.screenshot-content': string;
|
|
312
|
-
'common.user-policy': string;
|
|
313
|
-
'common.password-policy': string;
|
|
314
|
-
'app.common.word.login-policy': string;
|
|
315
|
-
'app.common.word.login-control': string;
|
|
316
|
-
'app.common.word.audit-log': string;
|
|
317
|
-
'common.day': string;
|
|
318
|
-
'common.times': string;
|
|
319
|
-
'app.common.word.custom': string;
|
|
320
|
-
'app.common.word.custom-role': string;
|
|
321
|
-
'app.common.word.reset': string;
|
|
322
|
-
'app.common.word.privacy-policy': string;
|
|
323
|
-
'app.common.word.privacy-policy-content': string;
|
|
324
|
-
'app.common.word.login-page-support': string;
|
|
325
|
-
'app.common.word.identity_verify_attrs': string;
|
|
326
|
-
'app.common.word.identity_verify_attrs_tooltip': string;
|
|
327
|
-
'app.common.word.identity_verify_attrs_tooltip_new': {
|
|
328
|
-
title: string;
|
|
329
|
-
paragraph1: string;
|
|
330
|
-
paragraph2: string;
|
|
331
|
-
};
|
|
332
|
-
'app.common.word.show-content': string;
|
|
333
|
-
'app.common.word.login-page-settings': string;
|
|
334
|
-
'app.common.word.platform-name': string;
|
|
335
|
-
'app.common.word.platform-logo': string;
|
|
336
|
-
'app.common.word.login-box-style': string;
|
|
337
|
-
'app.common.word.show-left': string;
|
|
338
|
-
'app.common.word.show-center': string;
|
|
339
|
-
'app.common.word.show-right': string;
|
|
340
|
-
'app.common.word.login-page-background': string;
|
|
341
|
-
'app.common.word.color-background': string;
|
|
342
|
-
'app.common.word.picture-background': string;
|
|
343
|
-
'app.common.word.background-image': string;
|
|
344
|
-
'app.common.word.ip-address': string;
|
|
345
|
-
'app.common.word.operation-start-time': string;
|
|
346
|
-
'app.common.word.operation-end-time': string;
|
|
347
|
-
'app.common.word.operator': string;
|
|
348
|
-
'app.common.word.file-name': string;
|
|
349
|
-
'app.common.word.file-type': string;
|
|
350
|
-
'common.abnormal': string;
|
|
351
|
-
'app.common.word.prison-break': string;
|
|
352
|
-
'common.user-creation-review': string;
|
|
353
|
-
'app.common.word.expiration-reminder': string;
|
|
354
|
-
'app.common.word.expiration-reminder-days': string;
|
|
355
|
-
'app.common.word.reminder-cycle': string;
|
|
356
|
-
'common.password-complexity': string;
|
|
357
|
-
'common.contains-numbers': string;
|
|
358
|
-
'common.minimum-password-length': string;
|
|
359
|
-
'common.contains-uppercase-letters': string;
|
|
360
|
-
'common.contains-lowercase-letters': string;
|
|
361
|
-
'common.contains-special-characters': string;
|
|
362
|
-
'common.reset_pwd_related_attr': string;
|
|
363
|
-
'common.reset_pwd_related_attr_tooltip': {
|
|
364
|
-
title: string;
|
|
365
|
-
paragraph1: string;
|
|
366
|
-
paragraph2: string;
|
|
367
|
-
};
|
|
368
|
-
'common.administrator-reset-password': string;
|
|
369
|
-
'common.change_password_after_first_login': string;
|
|
370
|
-
'common.account-locked-continuous-invalid-login': string;
|
|
371
|
-
'common.lock-account': string;
|
|
372
|
-
'common.lock-free-ip-whitelist': string;
|
|
373
|
-
'common.minute': string;
|
|
374
|
-
'app.manage.logout_uri': string;
|
|
375
|
-
'app.manage.logout_uri_tooltip': string;
|
|
376
|
-
'app.manage.logout_uri_placeholder': string;
|
|
377
|
-
'app.manage.uri_format_error': string;
|
|
378
|
-
'app.manage.optional': string;
|
|
379
|
-
'common.hour': string;
|
|
380
|
-
'app.common.word.invalid-immediately-after-closing-the-browser': string;
|
|
381
|
-
'app.common.word.time': string;
|
|
382
|
-
'app.common.word.sso-session-validity-period': string;
|
|
383
|
-
'app.common.word.sms-verification-code-validity-period': string;
|
|
384
|
-
'app.common.word.email-verification-code-validity-period': string;
|
|
385
|
-
'app.common.word.single-logout': string;
|
|
386
|
-
'app.common.word.forget-password': string;
|
|
387
|
-
'app.common.word.forget-password-tooltip': string;
|
|
388
|
-
'app.common.word.login-properties': string;
|
|
389
|
-
'app.common.word.multi-factor-authentication': string;
|
|
390
|
-
'app.common.word.enterprise-authentication-login': string;
|
|
391
|
-
'app.common.word.address-book-integrated-history-log': string;
|
|
392
|
-
'app.common.word.address-book-synchronization-history-log': string;
|
|
393
|
-
'app.common.word.connection-flow-run-log': string;
|
|
394
|
-
'app.common.word.add': string;
|
|
395
|
-
'app.common.word.add-application': string;
|
|
396
|
-
'app.common.word.add-account': string;
|
|
397
|
-
'app.common.word.add-field': string;
|
|
398
|
-
'app.common.word.add-an-ip': string;
|
|
399
|
-
'app.common.word.proxy-gateway': string;
|
|
400
|
-
'app.common.word.proxy-gateway-name': string;
|
|
401
|
-
'app.common.word.proxy-service': string;
|
|
402
|
-
'app.common.word.default-gateway': string;
|
|
403
|
-
'app.common.word.operation-type': string;
|
|
404
|
-
'app.common.word.specific-operations': string;
|
|
405
|
-
'app.common.word.operation_behavior': string;
|
|
406
|
-
'app.common.word.operation_result': string;
|
|
407
|
-
'app.common.word.operation-object': string;
|
|
408
|
-
'app.common.word.execution-status': string;
|
|
409
|
-
'app.common.word.process-classification': string;
|
|
410
|
-
'app.common.word.execution-time': string;
|
|
411
|
-
'app.common.word.receiver': string;
|
|
412
|
-
'app.common.word.space-type': string;
|
|
413
|
-
'app.common.word.operating-device': string;
|
|
414
|
-
'app.common.word.system-built-in-roles': string;
|
|
415
|
-
'app.common.word.system-administrator': string;
|
|
416
|
-
'common.account-administrator': string;
|
|
417
|
-
'app.common.word.application-manager': string;
|
|
418
|
-
'app.common.word.role-name': string;
|
|
419
|
-
'app.common.word.description': string;
|
|
420
|
-
'app.common.word.distribute': string;
|
|
421
|
-
'app.common.word.view': string;
|
|
422
|
-
'app.common.word.copy': string;
|
|
423
|
-
'common.password-reset-template': string;
|
|
424
|
-
'app.common.word.basic-authorization-information': string;
|
|
425
|
-
'app.common.word.authorized-user': string;
|
|
426
|
-
'app.common.word.authorization-module': string;
|
|
427
|
-
'app.common.word.authorization-time': string;
|
|
428
|
-
'common.user-connection': string;
|
|
429
|
-
'app.common.word.application-sso': string;
|
|
430
|
-
'app.common.word.security-baseline-monitoring-device-access': string;
|
|
431
|
-
'app.common.word.document-audit': string;
|
|
432
|
-
'app.common.word.application-distribution': string;
|
|
433
|
-
'app.common.word.data-leakage-prevention': string;
|
|
434
|
-
'app.common.word.secure-access-gateway': string;
|
|
435
|
-
'app.common.word.data-connections': string;
|
|
436
|
-
'app.common.word.data_connection_limit_note': string;
|
|
437
|
-
'app.common.word.application-package-name': string;
|
|
438
|
-
'app.common.word.platform': string;
|
|
439
|
-
'app.common.word.key': string;
|
|
440
|
-
'app.common.word.authorization-code': string;
|
|
441
|
-
'common.info': string;
|
|
442
|
-
'common.yes': string;
|
|
443
|
-
'common.no': string;
|
|
444
|
-
'common.delete.confirm': string;
|
|
445
|
-
'common.eq': string;
|
|
446
|
-
'common.ne': string;
|
|
447
|
-
'common.gt': string;
|
|
448
|
-
'common.ge': string;
|
|
449
|
-
'common.lt': string;
|
|
450
|
-
'common.le': string;
|
|
451
|
-
'common.sw': string;
|
|
452
|
-
'common.nsw': string;
|
|
453
|
-
'common.ew': string;
|
|
454
|
-
'common.ewn': string;
|
|
455
|
-
'common.co': string;
|
|
456
|
-
'common.nco': string;
|
|
457
|
-
'common.in': string;
|
|
458
|
-
'common.nin': string;
|
|
459
|
-
'common.length_max': string;
|
|
460
|
-
'common.special': string;
|
|
461
|
-
'common.device': string;
|
|
462
|
-
'common.use_proxy': string;
|
|
463
|
-
'common.do_not_use': string;
|
|
464
|
-
'common.cancel': string;
|
|
465
|
-
'common.reset': string;
|
|
466
|
-
'common.user_proxy_extra': string;
|
|
467
|
-
'common.update': string;
|
|
468
|
-
'common.search': string;
|
|
469
|
-
'common.change_password': string;
|
|
470
|
-
'common.passwords_do_not_match': string;
|
|
471
|
-
'common.password_verification': string;
|
|
472
|
-
'common.old_password': string;
|
|
473
|
-
'common.please_enter_old_password': string;
|
|
474
|
-
'common.new_password': string;
|
|
475
|
-
'common.please_enter_new_password': string;
|
|
476
|
-
'common.confirm_new_password': string;
|
|
477
|
-
'common.please_confirm_new_password': string;
|
|
478
|
-
'common.password_strength': string;
|
|
479
|
-
'common.password_strength_low': string;
|
|
480
|
-
'common.password_strength_medium': string;
|
|
481
|
-
'common.password_strength_strong': string;
|
|
482
|
-
'common.password_strength_score': string;
|
|
483
|
-
'common.phone_verification': string;
|
|
484
|
-
'common.phone_number': string;
|
|
485
|
-
'common.please_enter_phone_number': string;
|
|
486
|
-
'common.please_enter': string;
|
|
487
|
-
'common.please_upload': string;
|
|
488
|
-
'common.verification_code': string;
|
|
489
|
-
'common.please_enter_verification_code': string;
|
|
490
|
-
'common.get_verification_code': string;
|
|
491
|
-
'common.retry_in_seconds': string;
|
|
492
|
-
'common.verification_code_sent': string;
|
|
493
|
-
'theme.save': string;
|
|
494
|
-
'theme.primary_color': string;
|
|
495
|
-
'theme.navbar': string;
|
|
496
|
-
'theme.content_area': string;
|
|
497
|
-
'common.username': string;
|
|
498
|
-
'common.remark': string;
|
|
499
|
-
'common.operation_success': string;
|
|
500
|
-
'app.common.word.save-flow-config': string;
|
|
501
|
-
'common.uppercase-letter': string;
|
|
502
|
-
'common.lowercase-letter': string;
|
|
503
|
-
'common.special-character': string;
|
|
504
|
-
'common.start_time': string;
|
|
505
|
-
'common.end_time': string;
|
|
506
|
-
'common.permission_denied': string;
|
|
507
|
-
'common.download_failed': string;
|
|
508
|
-
'common.all_types': string;
|
|
509
|
-
'common.all_status': string;
|
|
510
|
-
'common.unknown_error': string;
|
|
511
|
-
'common.download': string;
|
|
512
|
-
'common.transparent': string;
|
|
513
|
-
'common.opaque': string;
|
|
514
|
-
'common.advancedFilter': string;
|
|
515
|
-
'app.common.word.sms-invitation': string;
|
|
516
|
-
'app.common.word.email-invitation': string;
|
|
517
|
-
'app.common.word.send-record': string;
|
|
518
|
-
'app.common.word.distribution-application-name': string;
|
|
519
|
-
'app.common.word.sms-content': string;
|
|
520
|
-
'app.common.word.jieshouzhe': string;
|
|
521
|
-
'app.common.word.send-message': string;
|
|
522
|
-
'app.common.word.inviter': string;
|
|
523
|
-
'app.common.word.send-time': string;
|
|
524
|
-
'app.common.word.invitation-method': string;
|
|
525
|
-
'app.common.word.send-status': string;
|
|
526
|
-
'app.common.word.email-title': string;
|
|
527
|
-
'app.common.word.email-content': string;
|
|
528
|
-
'app.common.word.send-email': string;
|
|
529
|
-
'app.common.word.query': string;
|
|
530
|
-
'app.common.word.rights-groups': string;
|
|
531
|
-
'app.common.word.management-scope': string;
|
|
532
|
-
'app.common.word.authorization-architecture-scope': string;
|
|
533
|
-
'app.common.word.bind-custom-role': string;
|
|
534
|
-
'app.common.word.sms-theme': string;
|
|
535
|
-
'app.common.word.quantity': string;
|
|
536
|
-
'app.common.word.sdk-authorization': string;
|
|
537
|
-
'app.common.word.app-distribution-page-customization': string;
|
|
538
|
-
'app.common.word.page-logo': string;
|
|
539
|
-
'app.common.word.page-background-image': string;
|
|
540
|
-
'app.common.word.button-color': string;
|
|
541
|
-
'app.common.word.title-copy': string;
|
|
542
|
-
'app.common.word.verify-lead-copy': string;
|
|
543
|
-
'app.common.word.bottom-prompt-copy': string;
|
|
544
|
-
'app.common.word.ways-of-verification': string;
|
|
545
|
-
'common.no-verification': string;
|
|
546
|
-
'app.common.word.extraction-code': string;
|
|
547
|
-
'app.common.word.alibaba-cloud-idaas': string;
|
|
548
|
-
'app.common.word.sms-verification': string;
|
|
549
|
-
'app.common.word.download-link': string;
|
|
550
|
-
'app.common.word.process-name': string;
|
|
551
|
-
'app.common.word.extract': string;
|
|
552
|
-
'common.please-enter': string;
|
|
553
|
-
'app.common.word.role': string;
|
|
554
|
-
'app.common.word.role-grouping': string;
|
|
555
|
-
'app.common.word.default-role-group': string;
|
|
556
|
-
'app.common.word.role-description': string;
|
|
557
|
-
'app.common.word.role-code': string;
|
|
558
|
-
'app.common.word.role-type': string;
|
|
559
|
-
'app.common.word.associated-users': string;
|
|
560
|
-
'common.user-info': string;
|
|
561
|
-
'app.common.word.classification': string;
|
|
562
|
-
'app.common.word.blacklist': string;
|
|
563
|
-
'app.common.word.condition': string;
|
|
564
|
-
'app.common.word.partial-exception': string;
|
|
565
|
-
'app.common.word.shangxian': string;
|
|
566
|
-
'app.common.word.fuzhi': string;
|
|
567
|
-
'app.common.word.release': string;
|
|
568
|
-
'app.common.word.trigger-event': string;
|
|
569
|
-
'app.common.word.revise': string;
|
|
570
|
-
'app.common.word.trigger-application': string;
|
|
571
|
-
'app.common.word.configuration-parameters': string;
|
|
572
|
-
'app.common.word.error-handler': string;
|
|
573
|
-
'app.common.word.enable-retry': string;
|
|
574
|
-
'app.common.word.enable-alert': string;
|
|
575
|
-
'app.common.word.webhook-url': string;
|
|
576
|
-
'app.common.word.enter-webhook-url': string;
|
|
577
|
-
'app.common.word.retry-count': string;
|
|
578
|
-
'app.common.word.retry-count-tooltip': string;
|
|
579
|
-
'app.common.word.please-enter-retry-count': string;
|
|
580
|
-
'app.common.word.retry-interval': string;
|
|
581
|
-
'app.common.word.retry-interval-tooltip': string;
|
|
582
|
-
'app.common.word.please-enter-retry-interval': string;
|
|
583
|
-
'app.common.word.step-factor': string;
|
|
584
|
-
'app.common.word.step-factor-tooltip': string;
|
|
585
|
-
'app.common.word.please-enter-step-factor': string;
|
|
586
|
-
'app.common.word.max-retry-interval': string;
|
|
587
|
-
'app.common.word.max-retry-interval-tooltip': string;
|
|
588
|
-
'app.common.word.please-enter-max-retry-interval': string;
|
|
589
|
-
'app.common.word.error-handling': string;
|
|
590
|
-
'app.common.word.select-error-handling': string;
|
|
591
|
-
'app.common.word.interrupt-flow': string;
|
|
592
|
-
'app.common.word.ignore-error': string;
|
|
593
|
-
'app.common.word.apply-to-all-nodes': string;
|
|
594
|
-
'app.common.word.test-node': string;
|
|
595
|
-
'app.common.word.test-and-preview': string;
|
|
596
|
-
'app.common.word.online-test': string;
|
|
597
|
-
'app.common.word.ignore-test': string;
|
|
598
|
-
'common.no-test-data-yet': string;
|
|
599
|
-
'app.common.word.execute-application': string;
|
|
600
|
-
'app.common.word.perform-action': string;
|
|
601
|
-
'app.common.word.configure-account': string;
|
|
602
|
-
'app.common.word.enlarge': string;
|
|
603
|
-
'app.common.word.zoom-out': string;
|
|
604
|
-
'app.common.word.reduction': string;
|
|
605
|
-
'app.common.word.full-screen': string;
|
|
606
|
-
'app.common.word.step': string;
|
|
607
|
-
'app.common.word.variable-name': string;
|
|
608
|
-
'app.common.word.add-new-and': string;
|
|
609
|
-
'app.common.word.add-or': string;
|
|
610
|
-
'app.common.word.select-variable': string;
|
|
611
|
-
'common.no-process-variables-yet': string;
|
|
612
|
-
'app.common.word.execution-conditions-conditional-judgment': string;
|
|
613
|
-
'app.common.word.loop-execution-loop-polling-array': string;
|
|
614
|
-
'app.common.word.loop-data-type': string;
|
|
615
|
-
'app.common.word.circulation-direction': string;
|
|
616
|
-
'app.common.word.loop-processing': string;
|
|
617
|
-
'app.common.word.please': string;
|
|
618
|
-
'app.common.word.and': string;
|
|
619
|
-
'app.common.word.use-immediately': string;
|
|
620
|
-
'app.common.word.select-trigger-condition': string;
|
|
621
|
-
'common.no-trigger-configured': string;
|
|
622
|
-
'app.common.word.select-an-application': string;
|
|
623
|
-
'app.common.word.action-to-execute': string;
|
|
624
|
-
'app.common.word.process-ends-automatically': string;
|
|
625
|
-
'app.common.word.copy-node': string;
|
|
626
|
-
'app.common.word.disable-node': string;
|
|
627
|
-
'app.common.word.enable-node': string;
|
|
628
|
-
'app.common.word.add-notes': string;
|
|
629
|
-
'app.common.word.modify-notes': string;
|
|
630
|
-
'common.delete-node': string;
|
|
631
|
-
'common.import-node': string;
|
|
632
|
-
'common.export-node': string;
|
|
633
|
-
'app.common.word.notes': string;
|
|
634
|
-
'app.common.word.avatar': string;
|
|
635
|
-
'app.common.word.gender': string;
|
|
636
|
-
'app.common.word.id-card': string;
|
|
637
|
-
'app.common.word.validity-period': string;
|
|
638
|
-
'app.common.word.confidential': string;
|
|
639
|
-
'app.common.word.male': string;
|
|
640
|
-
'app.common.word.female': string;
|
|
641
|
-
'app.common.word.job-number': string;
|
|
642
|
-
'app.common.word.extended-fields': string;
|
|
643
|
-
'app.common.word.employee-type': string;
|
|
644
|
-
'app.common.word.bu-person-in-charge': string;
|
|
645
|
-
'app.common.word.organize-information': string;
|
|
646
|
-
'common.department-management': string;
|
|
647
|
-
'app.common.word.main-department': string;
|
|
648
|
-
'common.department-occupation': string;
|
|
649
|
-
'common.department-heads': string;
|
|
650
|
-
'common.department-id': string;
|
|
651
|
-
'app.common.word.role-information': string;
|
|
652
|
-
'app.common.word.associated-role': string;
|
|
653
|
-
'app.common.word.nick-name': string;
|
|
654
|
-
'app.common.word.advanced-configuration': string;
|
|
655
|
-
'app.common.word.attribute-mapping': string;
|
|
656
|
-
'app.common.word.exception-handling': string;
|
|
657
|
-
'app.common.word.configuration-guide': string;
|
|
658
|
-
'common.edit-connector': string;
|
|
659
|
-
'app.common.word.connector-information': string;
|
|
660
|
-
'app.common.word.enterprise-choice': string;
|
|
661
|
-
'app.common.word.data-hung-node': string;
|
|
662
|
-
'common.upstream-root-organization-id': string;
|
|
663
|
-
'common.downstream-root-organization-id': string;
|
|
664
|
-
'user.link.upstream-root-organization-tip': string;
|
|
665
|
-
'common.sync-scope': string;
|
|
666
|
-
'app.common.word.users-and-departments': string;
|
|
667
|
-
'common.sync-users-only': string;
|
|
668
|
-
'common.department-synchronization-strategy': string;
|
|
669
|
-
'common.delete-user-threshold': string;
|
|
670
|
-
'common.delete-user-way': string;
|
|
671
|
-
'common.delete-user-way-disable': string;
|
|
672
|
-
'common.delete-user-way-delete': string;
|
|
673
|
-
'common.delete-user-way-tip': string;
|
|
674
|
-
'common.account-association': string;
|
|
675
|
-
'user.link.word.account-association-tip': string;
|
|
676
|
-
'app.common.word.add-association-rules': string;
|
|
677
|
-
'app.common.word.connection-test': string;
|
|
678
|
-
'app.common.word.test': string;
|
|
679
|
-
'app.common.word.merge-with-selected-node': string;
|
|
680
|
-
'app.common.word.create-new-under-selected-node': string;
|
|
681
|
-
'app.common.word.sync.connectors': string;
|
|
682
|
-
'app.common.word.integration.connectors': string;
|
|
683
|
-
'app.common.word.enterprise-certification-source': string;
|
|
684
|
-
'app.common.word.social-authentication-source': string;
|
|
685
|
-
'app.common.word.built_in_authentication_source': string;
|
|
686
|
-
'app.common.word.are-you-sure-you-want-to-delete-it': string;
|
|
687
|
-
'app.common.word.you-havent-uploaded-the-token-yet': string;
|
|
688
|
-
'app.common.word.you-havent-uploaded-any-apps-yet': string;
|
|
689
|
-
'app.common.word.application-basic-information': string;
|
|
690
|
-
'app.common.word.single-point-configuration': string;
|
|
691
|
-
'common.authorization-scope': string;
|
|
692
|
-
'app.common.word.regenerate': string;
|
|
693
|
-
'app.common.word.allow-self-service-application': string;
|
|
694
|
-
'app.common.word.allow': string;
|
|
695
|
-
'app.common.word.not-allowed': string;
|
|
696
|
-
'app.common.word.home-page-address': string;
|
|
697
|
-
'app.common.word.application-introduction': string;
|
|
698
|
-
'app.common.word.application-icon': string;
|
|
699
|
-
'app.common.word.offline': string;
|
|
700
|
-
'app.common.word.already-offline': string;
|
|
701
|
-
'app.common.word.not-published': string;
|
|
702
|
-
'app.common.word.already-online': string;
|
|
703
|
-
'app.common.word.going-online': string;
|
|
704
|
-
'common.warning': string;
|
|
705
|
-
'app.common.word.process-management': string;
|
|
706
|
-
'common.user-review-policy': string;
|
|
707
|
-
'app.common.word.create-review': string;
|
|
708
|
-
'app.common.word.renewal-review': string;
|
|
709
|
-
'app.common.word.application-instructions': string;
|
|
710
|
-
'app.common.word.image-less-than-50k': string;
|
|
711
|
-
'app.common.word.detection': string;
|
|
712
|
-
'app.common.word.initiator': string;
|
|
713
|
-
'app.common.word.self-service-application-request': string;
|
|
714
|
-
'app.common.word.open-method': string;
|
|
715
|
-
'app.common.word.current-page': string;
|
|
716
|
-
'app.common.word.new-window': string;
|
|
717
|
-
'app.common.word.customOpen': string;
|
|
718
|
-
};
|
|
6
|
+
export declare const getLocaleMessages: (locale: LocaleType) => LocaleMessages;
|
|
719
7
|
export declare const getSupportedLocales: () => LocaleType[];
|
|
720
8
|
export declare const isLocaleSupported: (locale: string) => locale is LocaleType;
|
|
721
9
|
export declare const createTranslator: (locale?: LocaleType) => TranslateFn;
|