@things-factory/integration-ui 6.0.75 → 6.0.78
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.
|
@@ -5,12 +5,27 @@
|
|
|
5
5
|
## properties
|
|
6
6
|
|
|
7
7
|
- name
|
|
8
|
+
- 커넥션의 이름을 지정
|
|
9
|
+
- 이름은 유니크해야함
|
|
8
10
|
- description
|
|
11
|
+
- 커넥션에 대한 설명
|
|
9
12
|
- active flag
|
|
13
|
+
- 어플리케이션 시작 시점에 자동으로 연결 여부 지정
|
|
10
14
|
- connector type
|
|
15
|
+
- 연결 대상에 사용될 커넥터를 지정
|
|
11
16
|
- endpoint
|
|
17
|
+
- 연결 대상의 엔드포인트 설정
|
|
18
|
+
- 커넥터별 도움말을 참고해서 설정할 수 있다.
|
|
19
|
+
- 통상, 리모트 서비스 인 경우에는 통상 {protocol}://{host}[:port] 또는 URL로 설정한다.
|
|
20
|
+
- 그리고, 대상이 로컬 파일인 경우에는 파일 패스로 설정한다.
|
|
21
|
+
- 로컬 디바이스인 경우에는 USB 포트번호가 설정될 수도 있다.
|
|
12
22
|
- parameters
|
|
23
|
+
- 각 커넥터별로 엔드포인트 정보 외에 추가적인 파라미터 설정이 필요한 경우에 설정화면이 제공된다.
|
|
24
|
+
- 커넥터별 도움말을 참고해서 설정할 수 있다.
|
|
13
25
|
|
|
14
26
|
## operation
|
|
15
27
|
|
|
16
|
-
- connect
|
|
28
|
+
- connect
|
|
29
|
+
- 연결을 시도한다.
|
|
30
|
+
- disconnect
|
|
31
|
+
- 연결을 종료한다.
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/integration-ui",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.78",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
7
7
|
"author": "heartyoh <heartyoh@hatiolab.com>",
|
|
8
8
|
"description": "User interface to manage integration scenario.",
|
|
9
|
+
"license": "MIT",
|
|
9
10
|
"publishConfig": {
|
|
10
11
|
"access": "public",
|
|
11
12
|
"@things-factory:registry": "https://registry.npmjs.org"
|
|
@@ -33,10 +34,10 @@
|
|
|
33
34
|
"@operato/property-editor": "^1.0.0",
|
|
34
35
|
"@operato/styles": "^1.0.0",
|
|
35
36
|
"@operato/utils": "^1.0.1",
|
|
36
|
-
"@things-factory/export-base": "^6.0.
|
|
37
|
-
"@things-factory/import-base": "^6.0.
|
|
38
|
-
"@things-factory/integration-base": "^6.0.
|
|
37
|
+
"@things-factory/export-base": "^6.0.78",
|
|
38
|
+
"@things-factory/import-base": "^6.0.78",
|
|
39
|
+
"@things-factory/integration-base": "^6.0.78",
|
|
39
40
|
"moment-timezone": "^0.5.40"
|
|
40
41
|
},
|
|
41
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "6d1b076baae617ee1c1df25e176c21d7b1a18e61"
|
|
42
43
|
}
|