@lowdefy/connection-axios-http 4.0.0-alpha.1 → 4.0.0-alpha.7

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 (2) hide show
  1. package/dist/types.js +6 -8
  2. package/package.json +11 -10
package/dist/types.js CHANGED
@@ -1,4 +1,4 @@
1
- /*
1
+ /* eslint-disable import/namespace */ /*
2
2
  Copyright 2020-2021 Lowdefy, Inc
3
3
 
4
4
  Licensed under the Apache License, Version 2.0 (the "License");
@@ -12,11 +12,9 @@
12
12
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
13
  See the License for the specific language governing permissions and
14
14
  limitations under the License.
15
- */ export default {
16
- connections: [
17
- 'AxiosHttp'
18
- ],
19
- requests: [
20
- 'AxiosHttp'
21
- ]
15
+ */ import * as connections from './connections.js';
16
+ export default {
17
+ connections: Object.keys(connections),
18
+ requests: Object.keys(connections).map((connection)=>Object.keys(connections[connection].requests)
19
+ ).flat()
22
20
  };
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@lowdefy/connection-axios-http",
3
- "version": "4.0.0-alpha.1",
3
+ "version": "4.0.0-alpha.7",
4
4
  "licence": "Apache-2.0",
5
5
  "description": "",
6
6
  "homepage": "https://lowdefy.com",
7
7
  "keywords": [
8
8
  "lowdefy",
9
- "lowdefy connection"
9
+ "lowdefy connection",
10
+ "lowdefy plugin"
10
11
  ],
11
12
  "bugs": {
12
13
  "url": "https://github.com/lowdefy/lowdefy/issues"
@@ -41,18 +42,18 @@
41
42
  "test": "jest --coverage"
42
43
  },
43
44
  "dependencies": {
44
- "@lowdefy/helpers": "4.0.0-alpha.1",
45
- "axios": "0.24.0"
45
+ "@lowdefy/helpers": "4.0.0-alpha.7",
46
+ "axios": "0.25.0"
46
47
  },
47
48
  "devDependencies": {
48
- "@lowdefy/ajv": "4.0.0-alpha.1",
49
- "@swc/cli": "0.1.52",
50
- "@swc/core": "1.2.112",
51
- "@swc/jest": "0.2.9",
52
- "jest": "27.3.1"
49
+ "@lowdefy/ajv": "4.0.0-alpha.7",
50
+ "@swc/cli": "0.1.55",
51
+ "@swc/core": "1.2.135",
52
+ "@swc/jest": "0.2.17",
53
+ "jest": "27.5.1"
53
54
  },
54
55
  "publishConfig": {
55
56
  "access": "public"
56
57
  },
57
- "gitHead": "c97a8fa6b5a641e7d50df09f5601a9c586eeb65a"
58
+ "gitHead": "52ec14639d00de910cf9b8ab25bf933ca891cff5"
58
59
  }