@emmvish/stable-request 1.3.5 → 1.3.6
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ All in all, it provides you with the **entire ecosystem** to build **API-integra
|
|
|
28
28
|
- [Pass Custom Parameters to Hooks](#7-pass-custom-parameters-to-hooks)
|
|
29
29
|
- [Pre-Execution Hook](#8-pre-execution-hook-dynamic-configuration)
|
|
30
30
|
- [Intermediate Concepts](#intermediate-concepts)
|
|
31
|
-
- [Making POST/PUT/PATCH Requests](#making-
|
|
31
|
+
- [Making POST/PUT/PATCH/DELETE Requests](#making-postputpatchdelete-requests)
|
|
32
32
|
- [Query Parameters](#query-parameters)
|
|
33
33
|
- [Custom Timeout and Port](#custom-timeout-and-port)
|
|
34
34
|
- [Request Cancellation](#request-cancellation)
|
|
@@ -527,7 +527,7 @@ interface PreExecutionOptions {
|
|
|
527
527
|
|
|
528
528
|
## Intermediate Concepts
|
|
529
529
|
|
|
530
|
-
### Making POST/PUT/PATCH Requests
|
|
530
|
+
### Making POST/PUT/PATCH/DELETE Requests
|
|
531
531
|
|
|
532
532
|
```typescript
|
|
533
533
|
import { stableRequest, REQUEST_METHODS } from '@emmvish/stable-request';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emmvish/stable-request",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.6",
|
|
4
4
|
"description": "stable-request is a TypeScript-first HTTP reliability toolkit for workflow-driven API integrations, that goes beyond status-code retries by validating response content, handling eventual consistency, coordinating batch workflows with intelligent grouping, and providing deep observability into every request attempt. It is designed for real-world distributed systems where HTTP success does not guarantee business success. It also provides extensive support for managing multiple requests so as to achieve workflow automation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|