@easyflow/javascript-sdk 2.1.24 → 2.1.26
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/DATA-STRUCTURES.md +457 -0
- package/INDEX.md +164 -0
- package/PLATFORM-INTEGRATION.md +235 -0
- package/README.md +164 -1155
- package/dist/easyflow-sdk.min.js +1 -1
- package/package.json +7 -5
package/package.json
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easyflow/javascript-sdk",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.26",
|
|
4
4
|
"description": "Enterprise-grade JavaScript SDK for Easyflow payment processing platform - Documentation and TypeScript definitions only",
|
|
5
|
-
"main": "
|
|
6
|
-
"module": "
|
|
5
|
+
"main": "./dist/easyflow-sdk.min.js",
|
|
6
|
+
"module": "./dist/easyflow-sdk.min.js",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"types": "./dist/index.d.ts",
|
|
9
9
|
"files": [
|
|
10
10
|
"README.md",
|
|
11
|
+
"INDEX.md",
|
|
12
|
+
"DATA-STRUCTURES.md",
|
|
13
|
+
"PLATFORM-INTEGRATION.md",
|
|
11
14
|
"LICENSE",
|
|
12
15
|
"dist/index.d.ts",
|
|
13
16
|
"dist/easyflow-sdk.min.js"
|
|
@@ -21,8 +24,7 @@
|
|
|
21
24
|
"./package.json": "./package.json"
|
|
22
25
|
},
|
|
23
26
|
"scripts": {
|
|
24
|
-
"build": "npm run generate-version &&
|
|
25
|
-
"build:types": "npx tsc --project tsconfig.json",
|
|
27
|
+
"build": "npm run generate-version && npx webpack --config webpack.config.cjs",
|
|
26
28
|
"generate-version": "node -e \"const pkg=require('./package.json'); const fs=require('fs'); const content='export const SDK_VERSION = \\'' + pkg.version + '\\';'; fs.writeFileSync('./version.mjs', content);\"",
|
|
27
29
|
"server:up": "rm -rf ./dist && npm run build && npx http-server . -p 8080 -o",
|
|
28
30
|
"dev": "npm run build && npx http-server . -p 8080 -o --cors",
|