@one-payments/react 1.0.8 → 1.1.2

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +32 -10
  3. package/package.json +12 -12
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 One Payments
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -26,10 +26,18 @@ pnpm add @one-payments/react @one-payments/adapters-web
26
26
  ```tsx
27
27
  import React from 'react';
28
28
  import { OnePayment } from '@one-payments/react';
29
+ import { PaymentConfig } from '@one-payments/core';
29
30
  import { createWebAdapters } from '@one-payments/adapters-web';
30
31
  import type { PaymentSucceededPayload, PaymentFailedPayload } from '@one-payments/react';
31
32
 
32
33
  function CheckoutPage() {
34
+ // Create config using PaymentConfig class (recommended for type safety and validation)
35
+ const config = new PaymentConfig({
36
+ apiKey: 'your-api-key',
37
+ secretKey: 'your-secret-key',
38
+ environment: 'demo'
39
+ });
40
+
33
41
  const adapters = createWebAdapters();
34
42
 
35
43
  const handleSuccess = (event: CustomEvent<PaymentSucceededPayload>) => {
@@ -46,15 +54,14 @@ function CheckoutPage() {
46
54
  <div className="checkout">
47
55
  <h1>Complete Your Payment</h1>
48
56
  <OnePayment
49
- config={{
50
- apiKey: 'your-api-key',
51
- secretKey: 'your-secret-key',
52
- environment: 'prod'
53
- }}
57
+ config={config}
54
58
  adapters={adapters}
55
59
  amount={5000}
56
60
  currency="SGD"
57
61
  orderId={`order-${Date.now()}`}
62
+ firstName="John"
63
+ lastName="Doe"
64
+ email="john@example.com"
58
65
  onPaymentSuccess={handleSuccess}
59
66
  onPaymentError={handleError}
60
67
  />
@@ -65,6 +72,16 @@ function CheckoutPage() {
65
72
  export default CheckoutPage;
66
73
  ```
67
74
 
75
+ > **Note**: You can also pass a plain config object instead of using `PaymentConfig`:
76
+ > ```tsx
77
+ > config={{
78
+ > apiKey: 'your-api-key',
79
+ > secretKey: 'your-secret-key',
80
+ > environment: 'demo'
81
+ > }}
82
+ > ```
83
+ > However, `PaymentConfig` is recommended as it provides validation and better TypeScript support.
84
+
68
85
  ### With State Management
69
86
 
70
87
  ```tsx
@@ -179,12 +196,17 @@ function CheckoutPage() {
179
196
 
180
197
  | Prop | Type | Required | Description |
181
198
  |------|------|----------|-------------|
182
- | `config` | `SDKConfig` | Yes | SDK configuration with API keys and environment |
199
+ | `config` | `SDKConfig \| PaymentConfig` | Yes | SDK configuration - use `new PaymentConfig({...})` (recommended) or plain object |
183
200
  | `adapters` | `Adapters` | Yes | Platform adapters (use `createWebAdapters()` for web) |
184
- | `amount` | `number` | Yes | Payment amount in smallest currency unit (e.g., cents) |
185
- | `currency` | `string` | Yes | ISO currency code (e.g., "USD", "EUR", "SGD") |
186
- | `orderId` | `string` | Yes | Unique order identifier |
187
- | `metadata` | `Record<string, string \| number \| boolean>` | No | Additional metadata to attach to the payment |
201
+ | `amount` | `number` | Yes | Payment amount in smallest currency unit (e.g., cents for USD, SGD) |
202
+ | `currency` | `string` | Yes | ISO 4217 currency code (e.g., "USD", "EUR", "SGD") |
203
+ | `orderId` | `string` | Yes | Unique order identifier from your system |
204
+ | `firstName` | `string` | **Yes** | Customer's first name (required for all payments) |
205
+ | `lastName` | `string` | **Yes** | Customer's last name (required for all payments) |
206
+ | `email` | `string` | **Yes** | Customer's email address (required for all payments) |
207
+ | `excludePaymentMethods` | `PaymentMethodId[]` | No | Array of payment method IDs to exclude from display |
208
+ | `width` | `string` | No | Custom width (e.g., "100%", "500px") |
209
+ | `maxWidth` | `string` | No | Maximum width constraint (e.g., "600px") |
188
210
  | `onPaymentSuccess` | `(event: CustomEvent<PaymentSucceededPayload>) => void` | No | Callback when payment succeeds |
189
211
  | `onPaymentError` | `(event: CustomEvent<PaymentFailedPayload>) => void` | No | Callback when payment fails |
190
212
  | `onStateChange` | `(event: CustomEvent<StateChangedPayload>) => void` | No | Callback when payment state changes |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@one-payments/react",
3
- "version": "1.0.8",
3
+ "version": "1.1.2",
4
4
  "description": "React wrapper for One Payments SDK",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -17,21 +17,14 @@
17
17
  "dist",
18
18
  "README.md"
19
19
  ],
20
- "scripts": {
21
- "dev": "tsup --watch",
22
- "build": "tsup",
23
- "typecheck": "tsc --noEmit",
24
- "lint": "eslint src --ext .ts,.tsx",
25
- "test": "vitest"
26
- },
27
20
  "peerDependencies": {
28
21
  "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
29
22
  "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
30
23
  },
31
24
  "dependencies": {
32
- "@one-payments/core": "^1.0.0",
33
- "@one-payments/web-components": "^1.0.8",
34
- "@lit/react": "^1.0.0"
25
+ "@lit/react": "^1.0.0",
26
+ "@one-payments/core": "1.1.3",
27
+ "@one-payments/web-components": "1.1.15"
35
28
  },
36
29
  "devDependencies": {
37
30
  "@types/react": "^18.2.0",
@@ -50,5 +43,12 @@
50
43
  ],
51
44
  "publishConfig": {
52
45
  "access": "public"
46
+ },
47
+ "scripts": {
48
+ "dev": "tsup --watch",
49
+ "build": "tsup",
50
+ "typecheck": "tsc --noEmit",
51
+ "lint": "eslint src --ext .ts,.tsx",
52
+ "test": "vitest"
53
53
  }
54
- }
54
+ }