rutter-ts 0.3.2 → 0.3.3

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/dist/api.cjs CHANGED
@@ -40,7 +40,7 @@ var RutterConnectionsApi = class {
40
40
  return result.data;
41
41
  }
42
42
  async get(accessToken) {
43
- const endpoint = "/connections";
43
+ const endpoint = "/connections/access_token";
44
44
  const response = await this.client.get(endpoint, {
45
45
  access_token: accessToken
46
46
  });
package/dist/api.js CHANGED
@@ -34,7 +34,7 @@ var RutterConnectionsApi = class {
34
34
  return result.data;
35
35
  }
36
36
  async get(accessToken) {
37
- const endpoint = "/connections";
37
+ const endpoint = "/connections/access_token";
38
38
  const response = await this.client.get(endpoint, {
39
39
  access_token: accessToken
40
40
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rutter-ts",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "TypeScript SDK for the Rutter API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",