n8n-nodes-toolingtools-bigboss 1.1.4 → 1.1.5
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 +25 -19
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,29 +24,35 @@
|
|
|
24
24
|
|
|
25
25
|
---
|
|
26
26
|
|
|
27
|
-
##
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
27
|
+
## Deterministic Billing. No Wasted Compute.
|
|
28
|
+
ToolingTools uses volumetric, compute-aligned billing designed for production document automation.
|
|
29
|
+
|
|
30
|
+
**You are charged only for effective work performed.** When an operation produces no measurable outcome, the system automatically reverses the charge at the billing layer.
|
|
31
|
+
|
|
32
|
+
**Example:**
|
|
33
|
+
If a compression operation results in **0% size reduction** (the document is already optimized), the system detects this condition immediately and refunds the consumed credits. The refund is explicitly reported in the API response metadata.
|
|
34
|
+
|
|
35
|
+
```json
|
|
36
|
+
"_refundInfo": {
|
|
37
|
+
"refunded": true,
|
|
38
|
+
"reason": "No effective optimization detected"
|
|
39
|
+
}
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
This behavior is enforced by execution logic, not manual review or policy exceptions.
|
|
40
43
|
|
|
41
44
|
---
|
|
42
45
|
|
|
43
|
-
##
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
## Why ToolingTools
|
|
47
|
+
ToolingTools is built for automation-first workloads, not consumer file utilities.
|
|
48
|
+
|
|
49
|
+
- **Unified credits** usable across UI and API
|
|
50
|
+
- **Transparent volumetric pricing** tied to document size and page count
|
|
51
|
+
- **Predictable cost per job**, suitable for batch and pipeline execution
|
|
52
|
+
- **Production-grade infrastructure** optimized for reliability and scale
|
|
53
|
+
- **No subscriptions**, no hidden limits, no breakage pricing
|
|
48
54
|
|
|
49
|
-
|
|
55
|
+
ToolingTools is intended for backend services, business workflows, and document processing pipelines where cost predictability and execution correctness matter.
|
|
50
56
|
|
|
51
57
|
---
|
|
52
58
|
|