@bigbinary/neeto-message-templates-frontend 0.5.0 → 0.5.1
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/app/javascript/src/translations/en.json +18 -0
- package/dist/index.cjs.js +597 -31
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +604 -40
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +15 -0
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"editSmsTemplate": "Edit SMS template",
|
|
9
9
|
"editWhatsappTemplate": "Edit whatsapp template",
|
|
10
10
|
"search": "Search {{what}}",
|
|
11
|
+
"searchApiTemplates": "Search API templates",
|
|
11
12
|
"markAsActive": "Mark as active",
|
|
12
13
|
"markAsInactive": "Mark as inactive",
|
|
13
14
|
"close": "Close",
|
|
@@ -31,6 +32,7 @@
|
|
|
31
32
|
"smsTemplate": "SMS template",
|
|
32
33
|
"whatsappTemplates": "Whatsapp Templates",
|
|
33
34
|
"whatsappTemplate": "Whatsapp Template",
|
|
35
|
+
"apiTemplates": "API templates",
|
|
34
36
|
"emptyState": "There are no {{type, anyCase}} to show.",
|
|
35
37
|
"sendTestEmail": "Send test email",
|
|
36
38
|
"sendTestSms": "Send test SMS",
|
|
@@ -56,6 +58,22 @@
|
|
|
56
58
|
},
|
|
57
59
|
"common": {
|
|
58
60
|
"send": "Send"
|
|
61
|
+
},
|
|
62
|
+
"yes": "Yes",
|
|
63
|
+
"no": "No",
|
|
64
|
+
"api": {
|
|
65
|
+
"sendToApi": "Send to API",
|
|
66
|
+
"endpoint": "Endpoint",
|
|
67
|
+
"additionalData": "Additional data",
|
|
68
|
+
"addApiTemplate": "Add new API template",
|
|
69
|
+
"addKeyValuePair": "Add new key value pair",
|
|
70
|
+
"key": "Key",
|
|
71
|
+
"value": "Value",
|
|
72
|
+
"deleteApiTemplate": "Delete API template?",
|
|
73
|
+
"validation": {
|
|
74
|
+
"endpointPresence": "Endpoint is required",
|
|
75
|
+
"validEndpoint": "Endpoint should be valid URL"
|
|
76
|
+
}
|
|
59
77
|
}
|
|
60
78
|
},
|
|
61
79
|
"messageType": {
|