@oasis-path/gamma-sdk 1.0.18 → 1.0.19

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.
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.generatePresignedFileDownloadUrl = generatePresignedFileDownloadUrl;
4
4
  const makeTrpcRequest_1 = require("../utils/makeTrpcRequest");
5
5
  async function generatePresignedFileDownloadUrl(options, apiKey, baseUrl) {
6
+ console.log(`sending to ${baseUrl}/trpc/generatePresignedFileDownloadUrl`);
6
7
  return (0, makeTrpcRequest_1.makeTrpcRequest)('POST', '/trpc/generatePresignedFileDownloadUrl', baseUrl, apiKey, {
7
8
  body: options
8
9
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oasis-path/gamma-sdk",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "TypeScript SDK for Gamma Files API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -30,7 +30,7 @@
30
30
  "scripts": {
31
31
  "build": "tsc",
32
32
  "watch": "tsc --watch",
33
- "push": "git add sdk/ && git commit -m 'chore: update SDK before publish' && git push",
33
+ "push": "git add ./ && git commit -m 'chore: update SDK before publish' && git push",
34
34
  "pub": "pnpm run build && pnpm publish --no-git-checks"
35
35
  }
36
36
  }