@vendit-dev/thirdparty-adapters 0.7.6-beta.2 → 0.7.8
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/.idea/codeStyles/Project.xml +50 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/thirdparty-adapters.iml +12 -0
- package/.idea/vcs.xml +6 -0
- package/lib/adapters/externalChannelManagers/externalChannelManager.type.d.ts +130 -0
- package/lib/adapters/externalChannelManagers/externalChannelManager.type.js +40 -0
- package/lib/adapters/externalChannelManagers/externalChannelManagerCaller.d.ts +10 -0
- package/lib/adapters/externalChannelManagers/externalChannelManagerCaller.js +79 -0
- package/lib/adapters/externalChannelManagers/externalChannelManagerCaller.type.d.ts +4 -0
- package/lib/adapters/externalChannelManagers/externalChannelManagerCaller.type.js +27 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.d.ts +25 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.helper.d.ts +23 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.helper.js +313 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.js +321 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.types.d.ts +583 -0
- package/lib/adapters/externalChannelManagers/tl-lincoln.types.js +32 -0
- package/lib/adapters/externalChannelManagers/tl-sample.d.ts +1218 -0
- package/lib/adapters/externalChannelManagers/tl-sample.js +3974 -0
- package/lib/adapters/parking/nicePark.js +8 -4
- package/lib/index.d.ts +4 -2
- package/lib/index.js +7 -3
- package/lib/types/common.d.ts +385 -0
- package/lib/types/common.js +2 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/index.js +18 -0
- package/lib/types/tl-lincoln.ota.d.ts +1 -0
- package/lib/types/tl-lincoln.ota.js +119 -0
- package/lib/utils/function.d.ts +2 -0
- package/lib/utils/function.js +15 -0
- package/package.json +48 -49
package/package.json
CHANGED
|
@@ -1,51 +1,50 @@
|
|
|
1
1
|
{
|
|
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
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
}
|
|
2
|
+
"name": "@vendit-dev/thirdparty-adapters",
|
|
3
|
+
"version": "0.7.8",
|
|
4
|
+
"description": "Third party adapters between v-cloud and other PMS/CMS providers.",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsc",
|
|
8
|
+
"dev": "node ./test/tl-lincoln.test.js",
|
|
9
|
+
"npm-login": "npm login",
|
|
10
|
+
"publish": "npm publish"
|
|
11
|
+
},
|
|
12
|
+
"keywords": ["vendit"],
|
|
13
|
+
"author": "Vendit <dev@vendit.co.kr> (https://vendit.co.kr)",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"devDependencies": {
|
|
16
|
+
"@babel/cli": "^7.10.5",
|
|
17
|
+
"@babel/core": "^7.10.5",
|
|
18
|
+
"@babel/node": "^7.10.5",
|
|
19
|
+
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
|
20
|
+
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
|
|
21
|
+
"@babel/preset-env": "^7.10.4",
|
|
22
|
+
"@babel/preset-flow": "^7.10.4",
|
|
23
|
+
"@types/ioredis": "^5.0.0",
|
|
24
|
+
"@types/node": "^20.4.5",
|
|
25
|
+
"@types/node-fetch": "^2.6.1",
|
|
26
|
+
"@types/npm": "^7.19.1",
|
|
27
|
+
"@types/sequelize": "^4.28.15",
|
|
28
|
+
"@types/tedious": "^4.0.9",
|
|
29
|
+
"@types/validator": "^13.7.17",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^3.6.1",
|
|
31
|
+
"@typescript-eslint/parser": "^3.6.1",
|
|
32
|
+
"@vendit-dev/utility-modules": "^0.20.1",
|
|
33
|
+
"babel-eslint": "^10.1.0",
|
|
34
|
+
"babel-plugin-module-resolver": "^4.0.0",
|
|
35
|
+
"cross-env": "^7.0.2",
|
|
36
|
+
"eslint": "^7.4.0",
|
|
37
|
+
"eslint-config-airbnb-base": "^13.1.0",
|
|
38
|
+
"eslint-plugin-import": "^2.16.0",
|
|
39
|
+
"typescript": "4.9.3"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"fast-xml-parser": "^4.4.0",
|
|
43
|
+
"moment": "^2.29.2",
|
|
44
|
+
"node-fetch": "2",
|
|
45
|
+
"npm": "6",
|
|
46
|
+
"sequelize": "^6.32.1",
|
|
47
|
+
"tedious": "6.2.1",
|
|
48
|
+
"uuid": "^8.3.2"
|
|
49
|
+
}
|
|
51
50
|
}
|