@bcrumbs.net/bc-shared 0.0.9 → 0.0.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/index.esm.js +3 -0
- package/package.json +1 -1
- package/src/lib/config/routes.d.ts +3 -0
package/index.esm.js
CHANGED
|
@@ -32,6 +32,8 @@ const BCRoutes = {
|
|
|
32
32
|
Login: `${AccountPortalRoot}/login`,
|
|
33
33
|
// It should be like that while it's used by BC-API
|
|
34
34
|
Register: `${AccountPortalRoot}/register`,
|
|
35
|
+
/** Landing-page entry: auth check → register or plan checkout (Polar/Stripe). */
|
|
36
|
+
CheckAuth: `${AccountPortalRoot}/check-auth`,
|
|
35
37
|
Password: `${AccountPortalRoot}/reset/:token`,
|
|
36
38
|
PartnerLogin: `${AccountPortalRoot}/partner-login`,
|
|
37
39
|
Profile: `${AccountPortalRoot}/profile`,
|
|
@@ -89,6 +91,7 @@ const BCRoutes = {
|
|
|
89
91
|
WebhookManagemnet: `${ManagemnetRoot}/webhook`,
|
|
90
92
|
CrmIntegrationManagemnet: `${ManagemnetRoot}/crm-integrations`,
|
|
91
93
|
ConvstageManagemnet: `${ManagemnetRoot}/convstage`,
|
|
94
|
+
QuickReplyManagemnet: `${ManagemnetRoot}/quick-replies`,
|
|
92
95
|
IntegrationManagemnet: `${ManagemnetRoot}/integration`,
|
|
93
96
|
InstagramOAuthCallback: `${ManagemnetRoot}/instagram-oauth-callback`,
|
|
94
97
|
GeneralSettings: `${ManagemnetRoot}/general-settings`,
|
package/package.json
CHANGED
|
@@ -10,6 +10,8 @@ export declare const BCRoutes: {
|
|
|
10
10
|
Welcome: string;
|
|
11
11
|
Login: string;
|
|
12
12
|
Register: string;
|
|
13
|
+
/** Landing-page entry: auth check → register or plan checkout (Polar/Stripe). */
|
|
14
|
+
CheckAuth: string;
|
|
13
15
|
Password: string;
|
|
14
16
|
PartnerLogin: string;
|
|
15
17
|
Profile: string;
|
|
@@ -65,6 +67,7 @@ export declare const BCRoutes: {
|
|
|
65
67
|
WebhookManagemnet: string;
|
|
66
68
|
CrmIntegrationManagemnet: string;
|
|
67
69
|
ConvstageManagemnet: string;
|
|
70
|
+
QuickReplyManagemnet: string;
|
|
68
71
|
IntegrationManagemnet: string;
|
|
69
72
|
InstagramOAuthCallback: string;
|
|
70
73
|
GeneralSettings: string;
|