@epilot/message-client 0.0.1 → 0.0.2
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 +40 -40
- package/dist/client.d.ts +1 -1
- package/dist/client.js +13 -13
- package/dist/definition.d.ts +3 -3
- package/dist/definition.js +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +13 -13
- package/dist/openapi.d.ts +18 -5
- package/dist/openapi.json +3942 -3161
- package/package-lock.json +8340 -8340
- package/package.json +58 -58
- package/tsconfig.json +23 -23
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@epilot/message-client",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "API Client for epilot Message API",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "jest",
|
|
9
|
-
"typescript": "tsc",
|
|
10
|
-
"bundle-definition": "webpack",
|
|
11
|
-
"openapi": "openapi read --json --dereference --bundle ../lambda/HandlerFunction/openapi.yml > src/openapi.json",
|
|
12
|
-
"typegen": "echo
|
|
13
|
-
"build": "npm run openapi && npm run typegen && npm run typescript && npm run bundle-definition",
|
|
14
|
-
"eslint": "../node_modules/.bin/eslint -c ../.eslintrc.yml"
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"*.js",
|
|
18
|
-
"*.d.ts",
|
|
19
|
-
"**/*.json",
|
|
20
|
-
"**/*.js",
|
|
21
|
-
"**/*.d.ts",
|
|
22
|
-
"!*.test.*",
|
|
23
|
-
"!**/*.test.*",
|
|
24
|
-
"!node_modules",
|
|
25
|
-
"!src",
|
|
26
|
-
"!src/**",
|
|
27
|
-
"!*.config.js"
|
|
28
|
-
],
|
|
29
|
-
"keywords": [],
|
|
30
|
-
"author": "epilot GmbH",
|
|
31
|
-
"license": "UNLICENSED",
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"axios": "^0.21.1"
|
|
34
|
-
},
|
|
35
|
-
"dependencies": {
|
|
36
|
-
"buffer": "^6.0.3",
|
|
37
|
-
"https-browserify": "^1.0.0",
|
|
38
|
-
"openapi-client-axios": "^3.13.1",
|
|
39
|
-
"stream-http": "^3.1.1",
|
|
40
|
-
"url": "^0.11.0",
|
|
41
|
-
"util": "^0.12.3"
|
|
42
|
-
},
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"@types/jest": "^26.0.20",
|
|
45
|
-
"axios": "^0.21.1",
|
|
46
|
-
"copy-webpack-plugin": "^7.0.0",
|
|
47
|
-
"jest": "^26.6.3",
|
|
48
|
-
"json-loader": "^0.5.7",
|
|
49
|
-
"openapi-client-axios-typegen": "^3.13.1",
|
|
50
|
-
"openapicmd": "^1.6.2",
|
|
51
|
-
"ts-jest": "^26.5.0",
|
|
52
|
-
"ts-loader": "^8.0.14",
|
|
53
|
-
"ts-node": "^9.1.1",
|
|
54
|
-
"typescript": "^4.1.3",
|
|
55
|
-
"webpack": "^5.18.0",
|
|
56
|
-
"webpack-cli": "^4.4.0"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@epilot/message-client",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "API Client for epilot Message API",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"test": "jest",
|
|
9
|
+
"typescript": "tsc",
|
|
10
|
+
"bundle-definition": "webpack",
|
|
11
|
+
"openapi": "openapi read --json --dereference --bundle ../lambda/HandlerFunction/openapi.yml > src/openapi.json",
|
|
12
|
+
"typegen": "echo /* eslint-disable */ > src/openapi.d.ts && typegen ../lambda/HandlerFunction/openapi.yml >> src/openapi.d.ts",
|
|
13
|
+
"build": "npm run openapi && npm run typegen && npm run typescript && npm run bundle-definition",
|
|
14
|
+
"eslint": "../node_modules/.bin/eslint -c ../.eslintrc.yml"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"*.js",
|
|
18
|
+
"*.d.ts",
|
|
19
|
+
"**/*.json",
|
|
20
|
+
"**/*.js",
|
|
21
|
+
"**/*.d.ts",
|
|
22
|
+
"!*.test.*",
|
|
23
|
+
"!**/*.test.*",
|
|
24
|
+
"!node_modules",
|
|
25
|
+
"!src",
|
|
26
|
+
"!src/**",
|
|
27
|
+
"!*.config.js"
|
|
28
|
+
],
|
|
29
|
+
"keywords": [],
|
|
30
|
+
"author": "epilot GmbH",
|
|
31
|
+
"license": "UNLICENSED",
|
|
32
|
+
"peerDependencies": {
|
|
33
|
+
"axios": "^0.21.1"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"buffer": "^6.0.3",
|
|
37
|
+
"https-browserify": "^1.0.0",
|
|
38
|
+
"openapi-client-axios": "^3.13.1",
|
|
39
|
+
"stream-http": "^3.1.1",
|
|
40
|
+
"url": "^0.11.0",
|
|
41
|
+
"util": "^0.12.3"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/jest": "^26.0.20",
|
|
45
|
+
"axios": "^0.21.1",
|
|
46
|
+
"copy-webpack-plugin": "^7.0.0",
|
|
47
|
+
"jest": "^26.6.3",
|
|
48
|
+
"json-loader": "^0.5.7",
|
|
49
|
+
"openapi-client-axios-typegen": "^3.13.1",
|
|
50
|
+
"openapicmd": "^1.6.2",
|
|
51
|
+
"ts-jest": "^26.5.0",
|
|
52
|
+
"ts-loader": "^8.0.14",
|
|
53
|
+
"ts-node": "^9.1.1",
|
|
54
|
+
"typescript": "^4.1.3",
|
|
55
|
+
"webpack": "^5.18.0",
|
|
56
|
+
"webpack-cli": "^4.4.0"
|
|
57
|
+
}
|
|
58
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"strict": true,
|
|
4
|
-
"target": "es5",
|
|
5
|
-
"module": "commonjs",
|
|
6
|
-
"moduleResolution": "node",
|
|
7
|
-
"lib": ["esnext", "dom"],
|
|
8
|
-
"experimentalDecorators": true,
|
|
9
|
-
"emitDecoratorMetadata": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"noImplicitAny": true,
|
|
12
|
-
"strictPropertyInitialization": false,
|
|
13
|
-
"strictNullChecks": false,
|
|
14
|
-
"resolveJsonModule": true,
|
|
15
|
-
"baseUrl": ".",
|
|
16
|
-
"rootDir": "src",
|
|
17
|
-
"outDir": "dist",
|
|
18
|
-
"sourceMap": true,
|
|
19
|
-
"declaration": true
|
|
20
|
-
},
|
|
21
|
-
"include": ["src/**/*"],
|
|
22
|
-
"exclude": ["**/*.test.ts"]
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"strict": true,
|
|
4
|
+
"target": "es5",
|
|
5
|
+
"module": "commonjs",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"lib": ["esnext", "dom"],
|
|
8
|
+
"experimentalDecorators": true,
|
|
9
|
+
"emitDecoratorMetadata": true,
|
|
10
|
+
"esModuleInterop": true,
|
|
11
|
+
"noImplicitAny": true,
|
|
12
|
+
"strictPropertyInitialization": false,
|
|
13
|
+
"strictNullChecks": false,
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"baseUrl": ".",
|
|
16
|
+
"rootDir": "src",
|
|
17
|
+
"outDir": "dist",
|
|
18
|
+
"sourceMap": true,
|
|
19
|
+
"declaration": true
|
|
20
|
+
},
|
|
21
|
+
"include": ["src/**/*"],
|
|
22
|
+
"exclude": ["**/*.test.ts"]
|
|
23
|
+
}
|