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