@yuno-payments/dashboard-api-mfe 0.36.60-RC.8 → 0.36.60-RC.9
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/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/types/types/audit/audit.d.ts +2 -1
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/esm/types/types/audit/audit.d.ts +2 -1
- package/build/index.d.ts +2 -1
- package/package.json +25 -25
|
@@ -113,8 +113,9 @@ export declare namespace Audit {
|
|
|
113
113
|
start_date: string;
|
|
114
114
|
end_date: string;
|
|
115
115
|
time_zone: string;
|
|
116
|
-
method?: string;
|
|
117
116
|
organizationCode?: string;
|
|
117
|
+
status_codes?: string[];
|
|
118
|
+
methods?: string[];
|
|
118
119
|
}
|
|
119
120
|
interface AuditApiJSON {
|
|
120
121
|
[key: string]: string;
|
package/build/index.d.ts
CHANGED
|
@@ -3654,8 +3654,9 @@ declare namespace Audit {
|
|
|
3654
3654
|
start_date: string;
|
|
3655
3655
|
end_date: string;
|
|
3656
3656
|
time_zone: string;
|
|
3657
|
-
method?: string;
|
|
3658
3657
|
organizationCode?: string;
|
|
3658
|
+
status_codes?: string[];
|
|
3659
|
+
methods?: string[];
|
|
3659
3660
|
}
|
|
3660
3661
|
interface AuditApiJSON {
|
|
3661
3662
|
[key: string]: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "0.36.60-RC.
|
|
3
|
+
"version": "0.36.60-RC.9",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -8,22 +8,22 @@
|
|
|
8
8
|
"/build"
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
|
-
"start": "cross-env BABEL_ENV=production
|
|
12
|
-
"startDev": "cross-env BABEL_ENV=production
|
|
13
|
-
"startStg": "cross-env BABEL_ENV=production
|
|
14
|
-
"startProd": "cross-env BABEL_ENV=production
|
|
15
|
-
"start:standalone": "
|
|
16
|
-
"build": "concurrently npm:build:
|
|
17
|
-
"build:
|
|
18
|
-
"build:sb": "concurrently npm:build:
|
|
19
|
-
"build:
|
|
20
|
-
"build:stg": "concurrently npm:build:
|
|
21
|
-
"build:
|
|
22
|
-
"build:prod": "concurrently npm:build:
|
|
23
|
-
"build:
|
|
11
|
+
"start": "cross-env BABEL_ENV=production rspack serve --env local --config rspack.config.js --port 9006",
|
|
12
|
+
"startDev": "cross-env BABEL_ENV=production rspack serve --env dev --config rspack.config.js --port 9006",
|
|
13
|
+
"startStg": "cross-env BABEL_ENV=production rspack serve --env stg --config rspack.config.js --port 9006",
|
|
14
|
+
"startProd": "cross-env BABEL_ENV=production rspack serve --env prod --config rspack.config.js --port 9006",
|
|
15
|
+
"start:standalone": "rspack serve --env standalone",
|
|
16
|
+
"build": "concurrently npm:build:rspack && sh ./scripts/post-build.sh",
|
|
17
|
+
"build:rspack": "rspack --env dev --mode=production",
|
|
18
|
+
"build:sb": "concurrently npm:build:rspack:sb && sh ./scripts/post-build.sh",
|
|
19
|
+
"build:rspack:sb": "rspack --env sbx --mode=production",
|
|
20
|
+
"build:stg": "concurrently npm:build:rspack:stg && sh ./scripts/post-build.sh",
|
|
21
|
+
"build:rspack:stg": "rspack --env stg --mode=production",
|
|
22
|
+
"build:prod": "concurrently npm:build:rspack:prod && sh ./scripts/post-build.sh",
|
|
23
|
+
"build:rspack:prod": "rspack --env prod --mode=production",
|
|
24
24
|
"build-publish": "rm -rf ./build && rollup -c",
|
|
25
25
|
"prepublishOnly": "npm run build-publish",
|
|
26
|
-
"analyze": "
|
|
26
|
+
"analyze": "rspack --mode=production --env analyze",
|
|
27
27
|
"lint": "eslint src --ext js,ts,tsx",
|
|
28
28
|
"format": "prettier --write .",
|
|
29
29
|
"check-format": "prettier --check .",
|
|
@@ -57,9 +57,13 @@
|
|
|
57
57
|
"@types/testing-library__jest-dom": "^5.14.1",
|
|
58
58
|
"babel-jest": "^29.0.3",
|
|
59
59
|
"concurrently": "^6.2.1",
|
|
60
|
+
"@swc/helpers": "^0.5.17",
|
|
60
61
|
"cross-env": "^7.0.3",
|
|
61
62
|
"dotenv-webpack": "^7.1.0",
|
|
62
63
|
"eslint": "^7.32.0",
|
|
64
|
+
"@rspack/cli": "^1.2.6",
|
|
65
|
+
"@rspack/core": "^1.5.2",
|
|
66
|
+
"@rspack/plugin-react-refresh": "^1.5.0",
|
|
63
67
|
"eslint-config-prettier": "^8.3.0",
|
|
64
68
|
"eslint-config-ts-react-important-stuff": "^3.0.0",
|
|
65
69
|
"eslint-plugin-prettier": "^3.4.1",
|
|
@@ -79,23 +83,15 @@
|
|
|
79
83
|
"ts-config-single-spa": "^3.0.0",
|
|
80
84
|
"ts-jest": "^29.1.5",
|
|
81
85
|
"typescript": "^4.3.5",
|
|
82
|
-
"webpack": "^5.51.1"
|
|
83
|
-
|
|
84
|
-
"webpack-cli": "^5.1.4",
|
|
85
|
-
"webpack-config-single-spa-react": "^4.0.0",
|
|
86
|
-
"webpack-config-single-spa-react-ts": "^4.0.0",
|
|
87
|
-
"webpack-config-single-spa-ts": "^4.0.0",
|
|
88
|
-
"webpack-dev-server": "^5.2.2",
|
|
89
|
-
"webpack-merge": "^5.8.0"
|
|
86
|
+
"webpack": "^5.51.1"
|
|
87
|
+
|
|
90
88
|
},
|
|
91
89
|
"dependencies": {
|
|
92
|
-
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
|
|
93
90
|
"@tanstack/react-query": "^4.29.7",
|
|
94
91
|
"@tanstack/react-query-devtools": "^4.29.7",
|
|
95
92
|
"@types/react": "^18.2.29",
|
|
96
93
|
"@types/react-dom": "^18.2.14",
|
|
97
94
|
"@types/systemjs": "^6.1.1",
|
|
98
|
-
"@types/webpack-env": "^1.16.2",
|
|
99
95
|
"axios": "^1.8.2",
|
|
100
96
|
"react": "^18.2.0",
|
|
101
97
|
"react-dom": "^18.2.0",
|
|
@@ -105,5 +101,9 @@
|
|
|
105
101
|
"single-spa-react": "^5.1.4",
|
|
106
102
|
"ts-loader": "^9.4.4",
|
|
107
103
|
"uuid": "^11.1.0"
|
|
104
|
+
},
|
|
105
|
+
"optionalDependencies": {
|
|
106
|
+
"@rspack/binding-linux-x64-gnu": "^1.2.6",
|
|
107
|
+
"@rspack/binding-linux-x64-musl": "^1.2.6"
|
|
108
108
|
}
|
|
109
109
|
}
|