digipay-utility-payment 0.0.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.
- package/README.md +28 -0
- package/fesm2022/digipay-utility-payment.mjs +5544 -0
- package/fesm2022/digipay-utility-payment.mjs.map +1 -0
- package/index.d.ts +257 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# `digipay-utility-payment` (Angular library)
|
|
2
|
+
|
|
3
|
+
Embeddable **utility payments / recharge / bill pay** UI for Angular applications.
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
**→ [Utility Payments SDK — guide for clients & developers](../../../docs/Utility-Payments-SDK-Guide.md)**
|
|
8
|
+
|
|
9
|
+
That guide covers product overview, requirements, installation, configuration, headers, embedding patterns, API overview, debugging, and troubleshooting.
|
|
10
|
+
|
|
11
|
+
## Build this library
|
|
12
|
+
|
|
13
|
+
From the **workspace** root (`digipay-utility-payments/workspace/`):
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
ng build utility-payments
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
For tarball output used by host apps:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm run build:pack-agent-lib
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Package metadata
|
|
26
|
+
|
|
27
|
+
- **npm name:** `digipay-utility-payment`
|
|
28
|
+
- **Peer deps:** `@angular/core`, `@angular/common` (^20.x for current line)
|