wirejs-deploy-amplify-basic 0.0.157-payments → 0.0.159-payments

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.
@@ -92,7 +92,6 @@ function isBackgroundJob(o: any): o is BackgroundJob<any> {
92
92
  }
93
93
 
94
94
  function extractSetCookies(context: Context) {
95
- console.log('setting cookies', context.cookies.getSetCookies());
96
95
  const cookies: string[] = [];
97
96
  for (const cookie of context.cookies.getSetCookies()) {
98
97
  const cookieOptions = [];
@@ -151,7 +150,6 @@ export const handler: LambdaFunctionURLHandler = async (event) => {
151
150
  ) {
152
151
  const responses = [];
153
152
  for (const call of calls) {
154
- console.log('handling API call', call);
155
153
  responses.push(await callApiMethod(api, call, wjsContext));
156
154
  }
157
155
  return {
@@ -270,7 +270,7 @@ async function tryAPIPath(context, res) {
270
270
 
271
271
  const path = context.location.pathname;
272
272
 
273
- if (!path === '/api' && !path.startsWith('/api/')) {
273
+ if (path !== '/api' && !path.startsWith('/api/')) {
274
274
  return false;
275
275
  }
276
276
 
@@ -3,6 +3,6 @@
3
3
  "dependencies": {
4
4
  "jsdom": "^25.0.1",
5
5
  "wirejs-dom": "^1.0.42",
6
- "wirejs-resources": "^0.1.125-payments"
6
+ "wirejs-resources": "^0.1.127-payments"
7
7
  }
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wirejs-deploy-amplify-basic",
3
- "version": "0.0.157-payments",
3
+ "version": "0.0.159-payments",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "recursive-copy": "^2.0.14",
43
43
  "rimraf": "^6.0.1",
44
44
  "wirejs-dom": "^1.0.42",
45
- "wirejs-resources": "^0.1.125-payments"
45
+ "wirejs-resources": "^0.1.127-payments"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@aws-amplify/backend": "^1.14.0",