-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: TypeError: api_1.default is not a constructor in Nestjs #446
Comments
Hello there, thanks for writing in! I believe there's an issue with your provided code snippet, you should be trying to construct an import EasyPostClient from '@easypost/api';
export class ShippingMailingService {
private readonly easyPostClient: EasyPostClient constructor() { this.easyPostClient = new EasyPostClient('apiKey') } } |
Thanks for the answer @nwithan8. |
has anyone found a workaround for this yet? |
Even i tried these solutions but still i am getting the same error |
@AshuImmencer05 @heindrik @mustafakendiguzel import EasyPostClient from '@easypost/api/dist/easypost'
const client = new EasyPostClient(api_key) |
@chr0m1ng Thank you so much ,your solution was really helpful it worked out pretty well.. |
@heindrik @chr0m1ng @nwithan8 @Justintime50 @mustafakendiguzel Guys I just wanted to ask a simple question, as i create shipment using api from the backend response object i get from easypost is very large so basically which has properties that are not required so how to get an ideal response which can help reduce the response time and prevent us from security breaks and other stuff etc? |
The API will always return the complete record for any given object (e.g. a Shipment), so there is no way to necessarily reduce the response payload size. You can reduce your request payloads by sending only the ID of existing server-side records (e.g. the ID of an existing Shipment), as that is all the server requires to locate and interact with an existing record. This question is unrelated to the original issue. To avoid pinging the other subscribers to this thread, if you have any additional questions, please open a separate ticket or reach out to our support team at [email protected]. |
Software Version
7.3.0
Language Version
21.4.0
Operating System
Windows
What happened?
What was expected?
To be able to build the app while using EasyPostClient
Sample Code
Relevant logs
No response
The text was updated successfully, but these errors were encountered: