callstack / callstack/super-app-showcase
Unable to install library @aws-sdk/client-cognito-identity-provider
- Dominant language
- TypeScript
- Stars
- 637
- Forks
- 131
- PR merge metrics
- No merged PRs in 30d
Description
## Environment
System:
OS: macOS 14.4.1
CPU: (8) arm64 Apple M1
Memory: 105.70 MB / 16.00 GB
Shell:
version: "5.9"
path: /bin/zsh
Binaries:
Node:
version: 18.19.1
path: ~/.nvm/versions/node/v18.19.1/bin/node
Yarn:
version: 1.22.21
path: ~/.nvm/versions/node/v18.19.1/bin/yarn
npm:
version: 10.2.4
path: ~/.nvm/versions/node/v18.19.1/bin/npm
Watchman: Not Found
Managers:
CocoaPods:
version: 1.15.2
path: /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms:
- DriverKit 23.2
- iOS 17.2
- macOS 14.2
- tvOS 17.2
- visionOS 1.0
- watchOS 10.2
Android SDK: Not Found
IDEs:
Android Studio: 2023.1 AI-231.9392.1.2311.11330709
Xcode:
version: 15.2/15C500b
path: /usr/bin/xcodebuild
Languages:
Java:
version: 17.0.10
path: /usr/bin/javac
Ruby:
version: 2.6.10
path: /usr/bin/ruby
## Description
I'm receiving an error TypeError: Object.defineProperty() invoked on non-object when I try to install the library @aws-sdk/client-cognito-identity-provider, but other libraries are working correctly.
## Reproducible Demo
try to install library on super app @aws-sdk/client-cognito-identity-provider and try running the application you will received the error
CODE
`import { CognitoIdentityProviderClient, InitiateAuthCommand } from '@aws-sdk/client-cognito-identity-provider';
interface loginParams {
username: string;
password: string;
type: string;
mobile_pin: string,
customChallenge: boolean
}
const login = ({username, password,type, mobile_pin, customChallenge} : loginParams): Promise => {
const client = new CognitoIdentityProviderClient({
region: 'YOUR_REGION',
credentials: {
accessKeyId: 'YOUR_ACCESS_KEY',
secretAccessKey: 'ACCESS_KEY',
},
});
const params = {
AuthFlow: 'CUSTOM_AUTH',
ClientId: 'POOL_ID',
AuthParameters: {
USERNAME: username,
PASSWORD: password,
},
};
return new Promise((resolve, reject) => {
// Attempt login
client.send(new InitiateAuthCommand(params))
.then(data => {
console.log('Authentication successful:', data);
})
.catch(err => {
console.error('Authentication failed:', err);
});
});
};
export { login };
`

Contributor guide
Assessment
This issue has not been assessed yet.