@aws-amplify/api 5.4.21 → 5.4.25
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/lib/index.js +1 -0
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib-esm/index.js +1 -0
- package/lib-esm/tsconfig.tsbuildinfo +1 -1
- package/package.json +20 -13
- package/src/index.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/api",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.25",
|
|
4
4
|
"description": "Api category of aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"homepage": "https://aws-amplify.github.io/",
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/zen-observable": "^0.8.0",
|
|
52
|
-
"typescript": "5.
|
|
52
|
+
"typescript": "5.8.3"
|
|
53
53
|
},
|
|
54
54
|
"files": [
|
|
55
55
|
"lib",
|
|
@@ -59,8 +59,8 @@
|
|
|
59
59
|
"internals"
|
|
60
60
|
],
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@aws-amplify/api-graphql": "3.4.
|
|
63
|
-
"@aws-amplify/api-rest": "3.5.
|
|
62
|
+
"@aws-amplify/api-graphql": "3.4.31",
|
|
63
|
+
"@aws-amplify/api-rest": "3.5.21",
|
|
64
64
|
"tslib": "^1.8.0"
|
|
65
65
|
},
|
|
66
66
|
"size-limit": [
|
|
@@ -75,14 +75,22 @@
|
|
|
75
75
|
"moduleNameMapper": {
|
|
76
76
|
"axios": "axios/dist/node/axios.cjs"
|
|
77
77
|
},
|
|
78
|
-
"globals": {
|
|
79
|
-
"ts-jest": {
|
|
80
|
-
"diagnostics": false,
|
|
81
|
-
"tsConfig": false
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
78
|
"transform": {
|
|
85
|
-
"^.+\\.(js|jsx|ts|tsx)$":
|
|
79
|
+
"^.+\\.(js|jsx|ts|tsx)$": [
|
|
80
|
+
"ts-jest",
|
|
81
|
+
{
|
|
82
|
+
"diagnostics": false,
|
|
83
|
+
"tsconfig": {
|
|
84
|
+
"allowJs": true,
|
|
85
|
+
"esModuleInterop": true,
|
|
86
|
+
"types": [
|
|
87
|
+
"jest",
|
|
88
|
+
"node"
|
|
89
|
+
],
|
|
90
|
+
"noEmitOnError": false
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
]
|
|
86
94
|
},
|
|
87
95
|
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
|
|
88
96
|
"testPathIgnorePatterns": [
|
|
@@ -104,7 +112,6 @@
|
|
|
104
112
|
"statements": 0
|
|
105
113
|
}
|
|
106
114
|
},
|
|
107
|
-
"testURL": "http://localhost/",
|
|
108
115
|
"coveragePathIgnorePatterns": [
|
|
109
116
|
"/node_modules/",
|
|
110
117
|
"dist",
|
|
@@ -112,5 +119,5 @@
|
|
|
112
119
|
"lib-esm"
|
|
113
120
|
]
|
|
114
121
|
},
|
|
115
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "68a0df1145f0f1e79d89753b1aafdbf8836a319d"
|
|
116
123
|
}
|
package/src/index.ts
CHANGED