@appconda/nextjs 1.0.33 → 1.0.34

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.
@@ -5,7 +5,7 @@ export class Waitlist extends ServiceClient {
5
5
  }
6
6
  async ListWiatlistSignups(waitlistId) {
7
7
  const payload = {};
8
- payload['waitlistId'];
8
+ payload['waitlistId'] = waitlistId;
9
9
  return await this.actionCall('ListWiatlistSignups', payload);
10
10
  }
11
11
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@appconda/nextjs",
3
3
  "homepage": "https://appconda.io/support",
4
4
  "description": "Appconda is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API",
5
- "version": "1.0.33",
5
+ "version": "1.0.34",
6
6
  "license": "BSD-3-Clause",
7
7
  "main": "dist/index.js",
8
8
  "types": "dist/index.d.ts",
package/publish.sh CHANGED
@@ -1,4 +1,4 @@
1
1
 
2
- npm version patch -m "Upgrade to new version"
2
+ npm version patch -m "Upgrade to new version" --no-git-tag-version
3
3
  npm run tsc-build
4
4
  npm publish --access public
@@ -17,3 +17,5 @@ export const ListWaitlistSignups = actionClient
17
17
  throw new Error('Failed to fetch ListWaitlistSignups');
18
18
  }
19
19
  });
20
+
21
+
@@ -9,7 +9,7 @@ export class Waitlist extends ServiceClient {
9
9
 
10
10
  public async ListWiatlistSignups(waitlistId: string): Promise<any[]> {
11
11
  const payload: Payload = {};
12
- payload['waitlistId']
12
+ payload['waitlistId'] = waitlistId;
13
13
  return await this.actionCall('ListWiatlistSignups', payload);
14
14
  }
15
15