@bigbinary/neeto-custom-domains-frontend 2.0.2 → 2.1.0-beta1
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/README.md +10 -0
- package/app/javascript/src/translations/en.json +10 -4
- package/dist/CustomDomain.js +977 -0
- package/dist/CustomDomain.js.map +1 -0
- package/dist/WelcomeScreen.js +4 -5
- package/dist/WelcomeScreen.js.map +1 -1
- package/dist/cjs/CustomDomain.js +998 -0
- package/dist/cjs/CustomDomain.js.map +1 -0
- package/dist/cjs/WelcomeScreen.js +4 -5
- package/dist/cjs/WelcomeScreen.js.map +1 -1
- package/dist/cjs/index.js +31 -579
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.js +30 -538
- package/dist/index.js.map +1 -1
- package/package.json +54 -52
- package/types.d.ts +0 -2
- package/dist/CustomDomainDashboard.js +0 -41
- package/dist/CustomDomainDashboard.js.map +0 -1
- package/dist/cjs/CustomDomainDashboard.js +0 -47
- package/dist/cjs/CustomDomainDashboard.js.map +0 -1
- package/dist/index-6d441e24.js +0 -959
- package/dist/index-6d441e24.js.map +0 -1
- package/dist/index-a5a14202.js +0 -903
- package/dist/index-a5a14202.js.map +0 -1
package/README.md
CHANGED
|
@@ -151,3 +151,13 @@ NEETO_DEPLOY_AUTH_TOKEN: <For pushing SSL certificate and custom domains>
|
|
|
151
151
|
Consult the
|
|
152
152
|
[building and releasing packages](https://neeto-engineering.neetokb.com/articles/building-and-releasing-packages)
|
|
153
153
|
guide for details on how to publish.
|
|
154
|
+
|
|
155
|
+
## Integrations
|
|
156
|
+
- NeetoCal
|
|
157
|
+
- NeetoForm
|
|
158
|
+
- NeetoKb
|
|
159
|
+
- NeetoEngage
|
|
160
|
+
- NeetoSite
|
|
161
|
+
- NeetoRecord
|
|
162
|
+
- NeetoPublish
|
|
163
|
+
- NeetoCourse
|
|
@@ -29,19 +29,25 @@
|
|
|
29
29
|
"delete": "Delete custom domain?",
|
|
30
30
|
"search": "Search custom domains",
|
|
31
31
|
"notFound": "There are no custom domains to show.",
|
|
32
|
-
"placeholder": "
|
|
32
|
+
"placeholder": "calendar.yourbusiness.com",
|
|
33
33
|
"cname": "CNAME",
|
|
34
34
|
"label": "Domain name",
|
|
35
35
|
"domainValidation": "Domain validation",
|
|
36
36
|
"domainRedirection": "Domain redirection",
|
|
37
37
|
"cnameRecordTitle": " Add the DNS record to your DNS provider",
|
|
38
|
-
"cnameRecordInfo": "Go to your DNS provider and
|
|
39
|
-
"
|
|
38
|
+
"cnameRecordInfo": "Go to your DNS provider and add the following DNS record by copying the exact settings listed below. View <Link>help article</Link> to understand how to add a DNS record.",
|
|
39
|
+
"dnsProviderCnameRecordInfo": "We have detected that {{dnsProvider,anyCase}} is your DNS provider. Please <Login>log in</Login> to your {{dnsProvider,anyCase}} account and add the following DNS record by copying the exact settings listed below. View <Link>help article</Link> for adding DNS record in {{dnsProvider,anyCase}}.",
|
|
40
|
+
"proxyMessage": " Do not enable proxy for the record. ",
|
|
41
|
+
"nameServerMessage": "View <Link>help article</Link> for adding DNS record in {{dnsProvider,anyCase}}.",
|
|
40
42
|
"domainRedirectionInfo": "It can take up to 2-24 hours for your custom domain to start working. Please visit your site in 24 hours from now and if after 24 hours <strong>{{hostname}}</strong> is not working then please view <Link>help article</Link> for more information and contact us.",
|
|
41
43
|
"domainValidationInfo": "CNAME record not found, if you added CNAME record in last 24 hours then please wait sometime and try it again. Verifying your domain usually only takes a few hours, but in some cases can take up to 24-48 hours.",
|
|
42
44
|
"certificateProvisionFailed": "CNAME record found but we are facing some issues with provisioning certificate for your domain. Please try again",
|
|
43
45
|
"learnMoreMessage": "Learn about <button>how to setup custom domains</button>",
|
|
44
46
|
"cnameAdded": "I have added redirection CNAME record",
|
|
47
|
+
"domainCreation": {
|
|
48
|
+
"existInStaging": "Custom domain <strong>{{hostname}}</strong> is already configured for another workspace. If you are the legitimate owner, please contact support to retrieve the custom domain.",
|
|
49
|
+
"existInProduction": "Custom domain <strong>{{hostname}}</strong> is already configured for the workspace <strong>{{workspace}}</strong>. Please <Link>login</Link> to that workspace and remove custom domain before trying to add the same domain here. please contact support if you are not part of this workspace."
|
|
50
|
+
},
|
|
45
51
|
"validation": {
|
|
46
52
|
"successMessage": "Custom domain successfully validated.",
|
|
47
53
|
"buttonLabel": {
|
|
@@ -65,7 +71,7 @@
|
|
|
65
71
|
"required": "Domain is required",
|
|
66
72
|
"valid": "Please add valid domain or URL"
|
|
67
73
|
},
|
|
68
|
-
"toolTips":{
|
|
74
|
+
"toolTips": {
|
|
69
75
|
"customDomain": "Add domain of your choice in case you do not prefer to use the default neeto domain."
|
|
70
76
|
}
|
|
71
77
|
}
|