This commit is contained in:
Duhan BALCI
2026-01-02 13:59:58 +03:00
parent c65195d26d
commit 219fcc13af
6 changed files with 2337 additions and 2471 deletions

3
.gitignore vendored
View File

@@ -6,4 +6,5 @@ dist/
.vscode/ .vscode/
.idea/ .idea/
npm-debug.log* npm-debug.log*
yarn-error.log* yarn-error.log*
.yarn/

3
.yarnrc.yml Normal file
View File

@@ -0,0 +1,3 @@
nodeLinker: node-modules
npmRegistryServer: https://gitea.duhanbalci.com/api/packages/duhanbalci/npm/

View File

@@ -1,17 +1,17 @@
# @iyzico/payment # @duhanbalci/iyzico-sdk
TypeScript SDK for iyzico payment gateway. TypeScript SDK for iyzico payment gateway.
## Installation ## Installation
```bash ```bash
npm install @iyzico/payment npm install @duhanbalci/iyzico-sdk
``` ```
## Usage ## Usage
```typescript ```typescript
import { IyzicoClient } from '@iyzico/payment'; import { IyzicoClient } from '@duhanbalci/iyzico-sdk';
const client = new IyzicoClient({ const client = new IyzicoClient({
apiKey: 'your-api-key', apiKey: 'your-api-key',

2465
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "@iyzico/payment", "name": "iyzico-sdk",
"version": "1.0.0", "version": "1.0.1",
"description": "Iyzico payment system TypeScript library", "description": "Iyzico payment system TypeScript library",
"main": "./dist/index.cjs", "main": "./dist/index.cjs",
"module": "./dist/index.mjs", "module": "./dist/index.mjs",

2327
yarn.lock Normal file

File diff suppressed because it is too large Load Diff