@yuno-payments/dashboard-api-mfe 0.42.15 → 0.42.16
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.
|
@@ -43,6 +43,9 @@ export declare namespace Webhook {
|
|
|
43
43
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
44
44
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
45
45
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
46
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
47
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
48
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
46
49
|
created_at: string;
|
|
47
50
|
updated_at?: string;
|
|
48
51
|
}
|
|
@@ -59,6 +62,9 @@ export declare namespace Webhook {
|
|
|
59
62
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
60
63
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
61
64
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
65
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
66
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
67
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
62
68
|
created_at: string;
|
|
63
69
|
updated_at?: string;
|
|
64
70
|
}
|
|
@@ -43,6 +43,9 @@ export declare namespace Webhook {
|
|
|
43
43
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
44
44
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
45
45
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
46
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
47
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
48
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
46
49
|
created_at: string;
|
|
47
50
|
updated_at?: string;
|
|
48
51
|
}
|
|
@@ -59,6 +62,9 @@ export declare namespace Webhook {
|
|
|
59
62
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
60
63
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
61
64
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
65
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
66
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
67
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
62
68
|
created_at: string;
|
|
63
69
|
updated_at?: string;
|
|
64
70
|
}
|
package/build/index.d.ts
CHANGED
|
@@ -1331,6 +1331,9 @@ declare namespace Webhook {
|
|
|
1331
1331
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
1332
1332
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
1333
1333
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
1334
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
1335
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
1336
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
1334
1337
|
created_at: string;
|
|
1335
1338
|
updated_at?: string;
|
|
1336
1339
|
}
|
|
@@ -1347,6 +1350,9 @@ declare namespace Webhook {
|
|
|
1347
1350
|
payment_triggers?: Array<IWebhooksTriggers>;
|
|
1348
1351
|
report_triggers?: Array<IWebhooksTriggers>;
|
|
1349
1352
|
customer_triggers?: Array<IWebhooksTriggers>;
|
|
1353
|
+
subscription_triggers?: Array<IWebhooksTriggers>;
|
|
1354
|
+
onboarding_triggers?: Array<IWebhooksTriggers>;
|
|
1355
|
+
reports_v2_triggers?: Array<IWebhooksTriggers>;
|
|
1350
1356
|
created_at: string;
|
|
1351
1357
|
updated_at?: string;
|
|
1352
1358
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yuno-payments/dashboard-api-mfe",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.16",
|
|
4
4
|
"types": "build/index.d.ts",
|
|
5
5
|
"main": "build/cjs/index.js",
|
|
6
6
|
"module": "build/esm/index.js",
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
],
|
|
10
10
|
"scripts": {
|
|
11
11
|
"start": "cross-env BABEL_ENV=production rspack serve --env local --config rspack.config.js --port 9006",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
12
|
+
"dev": "cross-env BABEL_ENV=production rspack serve --env dev --config rspack.config.js --port 9006",
|
|
13
|
+
"stg": "cross-env BABEL_ENV=production rspack serve --env stg --config rspack.config.js --port 9006",
|
|
14
|
+
"prod": "cross-env BABEL_ENV=production rspack serve --env prod --config rspack.config.js --port 9006",
|
|
15
15
|
"start:standalone": "rspack serve --env standalone",
|
|
16
16
|
"build": "concurrently npm:build:rspack && sh ./scripts/post-build.sh",
|
|
17
17
|
"build:rspack": "rspack --env dev --mode=production",
|