@easyflow/javascript-sdk 2.1.9 → 2.1.10
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 +20 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Easyflow JavaScript SDK
|
|
2
2
|
|
|
3
3
|
[](https://github.com/easyflow-cash/easyflow-javascript-sdk/actions)
|
|
4
|
-
[](https://easyflow-sdk.pages.dev)
|
|
5
5
|
[](LICENSE)
|
|
6
6
|
[](https://github.com/easyflow-cash/easyflow-javascript-sdk)
|
|
7
7
|
[](https://github.com/easyflow-cash/easyflow-javascript-sdk)
|
|
@@ -84,7 +84,16 @@ The **Easyflow JavaScript SDK** is the official tool for developers to integrate
|
|
|
84
84
|
- **High Performance**: Optimized for production
|
|
85
85
|
- **Complete Documentation**: Practical examples for all use cases
|
|
86
86
|
|
|
87
|
-
## What's New in v2.1.
|
|
87
|
+
## What's New in v2.1.10
|
|
88
|
+
|
|
89
|
+
### Workflow Corrections
|
|
90
|
+
|
|
91
|
+
- **GitHub Actions Fixed**: Resolved release workflow permissions and SRI hash generation
|
|
92
|
+
- **CDN Deployment**: Automated deployment to Cloudflare Pages working correctly
|
|
93
|
+
- **Release Automation**: GitHub releases created automatically with proper SRI hashes
|
|
94
|
+
- **Build Process**: Streamlined build and deployment pipeline
|
|
95
|
+
|
|
96
|
+
### Hybrid Distribution Strategy
|
|
88
97
|
|
|
89
98
|
### Hybrid Distribution Strategy
|
|
90
99
|
|
|
@@ -158,7 +167,7 @@ Add this script tag to your HTML:
|
|
|
158
167
|
<script src="https://easyflow-sdk.pages.dev/easyflow-sdk.min.js"></script>
|
|
159
168
|
|
|
160
169
|
<!-- Specific version -->
|
|
161
|
-
<script src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.
|
|
170
|
+
<script src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.10.min.js"></script>
|
|
162
171
|
```
|
|
163
172
|
|
|
164
173
|
#### Option 2: NPM Package (Documentation Only)
|
|
@@ -525,7 +534,7 @@ console.log('Bank Billet Link:', bankBillet.link)
|
|
|
525
534
|
|
|
526
535
|
<!-- With SRI (Subresource Integrity) -->
|
|
527
536
|
<script
|
|
528
|
-
src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.
|
|
537
|
+
src="https://easyflow-sdk.pages.dev/easyflow-sdk.v2.1.10.min.js"
|
|
529
538
|
integrity="sha384-[hash]"
|
|
530
539
|
crossorigin="anonymous"
|
|
531
540
|
></script>
|
|
@@ -555,6 +564,13 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
555
564
|
|
|
556
565
|
## Changelog
|
|
557
566
|
|
|
567
|
+
### v2.1.10
|
|
568
|
+
|
|
569
|
+
- **Workflow Fixed**: Resolved GitHub Actions permissions and SRI hash generation
|
|
570
|
+
- **CDN Automation**: Automated deployment to Cloudflare Pages working correctly
|
|
571
|
+
- **Release Process**: GitHub releases created automatically with proper SRI hashes
|
|
572
|
+
- **Build Pipeline**: Streamlined build and deployment process
|
|
573
|
+
|
|
558
574
|
### v2.1.9
|
|
559
575
|
|
|
560
576
|
- **Hybrid Distribution**: NPM for docs, CDN for secure obfuscated code
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easyflow/javascript-sdk",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.10",
|
|
4
4
|
"description": "Easyflow JavaScript SDK - Documentation and TypeScript definitions. For production use, use the CDN script: https://easyflow-sdk.pages.dev/easyflow-sdk.min.js",
|
|
5
5
|
"main": "README.md",
|
|
6
6
|
"module": "README.md",
|