@digitalsee-ai/rcs 1.0.4 → 1.0.5

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.
@@ -1,8 +1,11 @@
1
1
  import { FormSchema } from '../../../../../../dynamic-form/types/form-schema';
2
+ import { LinkApp } from '../../../define/links';
2
3
  import { default as React } from 'react';
3
4
  interface CredentialAccountFormProps {
4
5
  formSchema: FormSchema;
5
6
  initialValues?: Record<string, unknown>;
7
+ connector: LinkApp;
8
+ proxy_id?: string;
6
9
  onCancel: () => void;
7
10
  onSubmit: (values: Record<string, unknown>, isTest?: boolean) => void;
8
11
  }
@@ -0,0 +1,3 @@
1
+ export declare const flowVariableHoverTooltip: import('@codemirror/state').Extension & {
2
+ active: import('@codemirror/state').StateField<readonly import('@codemirror/view').Tooltip[]>;
3
+ };
@@ -0,0 +1,4 @@
1
+ import { NodeStatus } from '../../types/Node';
2
+ export declare const isFailedNodeTestResponse: (data: unknown) => boolean;
3
+ export declare const getNodeTestStatus: (data: unknown) => NodeStatus.FAILED | NodeStatus.SUCCESS;
4
+ export declare const formatNodeTestResult: (data: unknown) => string;
@@ -0,0 +1,23 @@
1
+ export type FlowVariableType = 'node' | 'global' | 'builtin' | 'unknown';
2
+ export interface FlowVariableMatch {
3
+ value: string;
4
+ expression: string;
5
+ type: FlowVariableType;
6
+ firstPart: string;
7
+ path: string;
8
+ startIndex: number;
9
+ endIndex: number;
10
+ startLine: number;
11
+ startColumn: number;
12
+ endLine: number;
13
+ endColumn: number;
14
+ }
15
+ export declare const getFlowVariableType: (firstPart: string) => FlowVariableType;
16
+ export declare const extractFlowVariables: (text: string) => FlowVariableMatch[];
17
+ export declare const isPositionInFlowVariable: (variable: FlowVariableMatch, lineNumber: number, column: number) => boolean;
18
+ export declare const doesRangeIntersectFlowVariable: (variable: FlowVariableMatch, range: {
19
+ startLineNumber: number;
20
+ startColumn: number;
21
+ endLineNumber: number;
22
+ endColumn: number;
23
+ }) => boolean;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;
@@ -74,6 +74,13 @@ declare const _default: {
74
74
  'link.flow.remove': string;
75
75
  'link.flow.please_enter_variable_name': string;
76
76
  'link.flow.variable_name': string;
77
+ 'link.flow.variable_type_node': string;
78
+ 'link.flow.variable_type_global': string;
79
+ 'link.flow.variable_type_builtin': string;
80
+ 'link.flow.variable_type_platform': string;
81
+ 'link.flow.variable_path': string;
82
+ 'link.flow.variable_field': string;
83
+ 'link.flow.variable_description': string;
77
84
  'link.flow.please_select_condition': string;
78
85
  'link.flow.select_condition': string;
79
86
  'link.flow.value': string;