We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Transformation is not done for the following code:
import { DocumentClient } from 'aws-sdk/lib/dynamodb/document_client'; const client = new DocumentClient();
Transformed code
import { DynamoDBDocument } from '@aws-sdk/lib-dynamodb'; import { DynamoDB } from '@aws-sdk/client-dynamodb'; const client = DynamoDBDocument.from(new DynamoDB());
Skip the transformation, as deep import from aws-sdk/lib/* is not documented in public. The official documented deep import is aws-sdk/clients/*
aws-sdk/lib/*
aws-sdk/clients/*
No response
The text was updated successfully, but these errors were encountered:
https://github.com/Budibase/budibase/blob/cb11a1609136ff8a165143fa97c6bb39cbdc17e8/packages/server/src/integrations/dynamodb.ts#L12
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Self-service
Problem
Transformation is not done for the following code:
Solution
Transformed code
Alternatives
Skip the transformation, as deep import from
aws-sdk/lib/*
is not documented in public.The official documented deep import is
aws-sdk/clients/*
Additional context
No response
The text was updated successfully, but these errors were encountered: