payment-skill 1.1.8 → 1.1.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payment-skill",
3
- "version": "1.1.8",
3
+ "version": "1.1.9",
4
4
  "description": "Self-hosted payment orchestration app for OpenClaw - pay from your bank account to merchants via API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -181,7 +181,7 @@ function updateDomainsList(domainList) {
181
181
  const container = document.getElementById('domains-list');
182
182
  if (!container) return;
183
183
 
184
- console.log('Domains:', domains);
184
+ console.log('Domains received:', JSON.stringify(domains, null, 2));
185
185
 
186
186
  if (domains.length === 0) {
187
187
  container.innerHTML = '<span style="color: var(--text-secondary); font-size: 10px;">No domains configured</span>';
@@ -215,21 +215,6 @@ function updateDomainsList(domainList) {
215
215
  `}).join('');
216
216
  }
217
217
 
218
- async function addDomain() {
219
- const domain = document.getElementById('new-domain').value.trim();
220
- if (!domain) return;
221
-
222
- const result = await apiPost('/api/limits/domains', { domain });
223
- document.getElementById('new-domain').value = '';
224
-
225
- // Use returned controls to ensure correct mode
226
- if (result.controls) {
227
- updateDomainsList(result.controls.domains || [], result.controls.mode || 'blacklist');
228
- } else {
229
- await loadLimits();
230
- }
231
- }
232
-
233
218
  async function removeDomain(domain) {
234
219
  try {
235
220
  const response = await fetch(`${API_BASE}/api/limits/domains/${encodeURIComponent(domain)}`, { method: 'DELETE' });