flysoft-react-ui 1.3.2 → 1.3.3
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/AI_CONTEXT.md +1575 -1574
- package/AI_INTEGRATION_GUIDE.md +359 -359
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/dist/services/apiClient.d.ts +9 -0
- package/dist/services/apiClient.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11094,6 +11094,18 @@ class Un {
|
|
|
11094
11094
|
body: n
|
|
11095
11095
|
})).data;
|
|
11096
11096
|
}
|
|
11097
|
+
/**
|
|
11098
|
+
* Realiza una petición PATCH
|
|
11099
|
+
*/
|
|
11100
|
+
async patch(t) {
|
|
11101
|
+
const { url: r, body: n, headers: s } = t;
|
|
11102
|
+
return (await this.axiosRequest({
|
|
11103
|
+
method: "PATCH",
|
|
11104
|
+
url: r,
|
|
11105
|
+
headers: s,
|
|
11106
|
+
body: n
|
|
11107
|
+
})).data;
|
|
11108
|
+
}
|
|
11097
11109
|
/**
|
|
11098
11110
|
* Realiza una petición DELETE
|
|
11099
11111
|
*/
|