@eide/foir-cli 0.12.0 → 0.13.0
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/dist/cli.js +3 -3
- package/dist/lib/config-helpers.d.ts +5 -4
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -855,7 +855,7 @@ function createIdentityMethods(client) {
|
|
|
855
855
|
fromName: params.fromName,
|
|
856
856
|
replyTo: params.replyTo,
|
|
857
857
|
supportEmail: params.supportEmail,
|
|
858
|
-
|
|
858
|
+
appBaseUrl: params.appBaseUrl,
|
|
859
859
|
customerWelcomeEmailEnabled: params.customerWelcomeEmailEnabled,
|
|
860
860
|
customerSignupEnabled: params.customerSignupEnabled
|
|
861
861
|
})
|
|
@@ -5785,7 +5785,7 @@ function registerPushCommand(program2, globalOpts) {
|
|
|
5785
5785
|
fromName: s.fromName,
|
|
5786
5786
|
replyTo: s.replyTo,
|
|
5787
5787
|
supportEmail: s.supportEmail,
|
|
5788
|
-
|
|
5788
|
+
appBaseUrl: s.appBaseUrl,
|
|
5789
5789
|
customerWelcomeEmailEnabled: s.customerWelcomeEmailEnabled,
|
|
5790
5790
|
customerSignupEnabled: s.customerSignupEnabled
|
|
5791
5791
|
});
|
|
@@ -6033,7 +6033,7 @@ function projectSettingsFromGetProject(p) {
|
|
|
6033
6033
|
if (p.fromName) out.fromName = p.fromName;
|
|
6034
6034
|
if (p.replyTo) out.replyTo = p.replyTo;
|
|
6035
6035
|
if (p.supportEmail) out.supportEmail = p.supportEmail;
|
|
6036
|
-
if (p.
|
|
6036
|
+
if (p.appBaseUrl) out.appBaseUrl = p.appBaseUrl;
|
|
6037
6037
|
if (typeof p.customerWelcomeEmailEnabled === "boolean") {
|
|
6038
6038
|
out.customerWelcomeEmailEnabled = p.customerWelcomeEmailEnabled;
|
|
6039
6039
|
}
|
|
@@ -272,11 +272,12 @@ interface ApplyConfigProjectSettingsInput {
|
|
|
272
272
|
/** Support email surfaced in email footers. */
|
|
273
273
|
supportEmail?: string;
|
|
274
274
|
/**
|
|
275
|
-
*
|
|
276
|
-
*
|
|
277
|
-
* platform will mint
|
|
275
|
+
* Public base URL of the consumer-facing app (storefront, portal,
|
|
276
|
+
* internal tool, …). Reset / verify / invitation links in customer
|
|
277
|
+
* emails are built from this — required before the platform will mint
|
|
278
|
+
* customer-email links.
|
|
278
279
|
*/
|
|
279
|
-
|
|
280
|
+
appBaseUrl?: string;
|
|
280
281
|
/**
|
|
281
282
|
* Whether the platform sends a welcome email on customer registration.
|
|
282
283
|
* Default true. Disable for invite-style flows.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eide/foir-cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "Universal platform CLI for Foir platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@bufbuild/protovalidate": "^1.1.1",
|
|
51
51
|
"@connectrpc/connect": "^2.0.0",
|
|
52
52
|
"@connectrpc/connect-node": "^2.0.0",
|
|
53
|
-
"@eide/foir-proto-ts": "^0.
|
|
53
|
+
"@eide/foir-proto-ts": "^0.31.0",
|
|
54
54
|
"chalk": "^5.3.0",
|
|
55
55
|
"commander": "^12.1.0",
|
|
56
56
|
"dotenv": "^16.4.5",
|