amplifyquery 1.0.5 → 1.0.6
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 +0 -4
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -358,13 +358,9 @@ const AdminTodoService = AmplifyQuery.createAmplifyService<TodoModel>(
|
|
|
358
358
|
"iam"
|
|
359
359
|
);
|
|
360
360
|
|
|
361
|
-
// Set authentication mode for an existing service
|
|
362
361
|
TodoService.setAuthMode("apiKey");
|
|
363
362
|
|
|
364
|
-
// Apply authentication mode to a specific request
|
|
365
363
|
await TodoService.list({ authMode: "iam" });
|
|
366
|
-
|
|
367
|
-
// Get a new service instance with a specific auth mode applied
|
|
368
364
|
const adminTodoService = TodoService.withAuthMode("iam");
|
|
369
365
|
```
|
|
370
366
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "amplifyquery",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Amplify+Query",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Amplify",
|
|
@@ -39,6 +39,8 @@
|
|
|
39
39
|
"@aws-amplify/datastore": "^5.0.82",
|
|
40
40
|
"@babel/core": "^7.27.1",
|
|
41
41
|
"@react-native-async-storage/async-storage": "^2.1.2",
|
|
42
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
43
|
+
"@semantic-release/git": "^10.0.1",
|
|
42
44
|
"@tanstack/react-query": "^5.76.1",
|
|
43
45
|
"@tanstack/react-query-persist-client": "^5.76.1",
|
|
44
46
|
"@types/react": "^19.1.4",
|
|
@@ -51,6 +53,7 @@
|
|
|
51
53
|
"react": "^19.1.0",
|
|
52
54
|
"react-native": "^0.79.2",
|
|
53
55
|
"react-native-mmkv": "^3.2.0",
|
|
56
|
+
"semantic-release": "^24.2.5",
|
|
54
57
|
"typescript": "^5.8.3",
|
|
55
58
|
"zustand": "^5.0.4"
|
|
56
59
|
},
|