@singi-labs/sifa-sdk 0.12.5 → 0.12.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/dist/{index-xcu81B4E.d.cts → index-CUUZmpCG.d.cts} +2 -2
- package/dist/{index-m5MELVUQ.d.ts → index-DS4b3pZJ.d.ts} +2 -2
- package/dist/{index-C1SIpwOj.d.ts → index-Dxwi4T3Z.d.ts} +1 -1
- package/dist/{index-BJV2XHOP.d.cts → index-Dz00ddQP.d.cts} +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/{org-92bvwL8H.d.cts → org-0DdoEMXx.d.cts} +30 -2
- package/dist/{org-Bxz__jbx.d.ts → org-DxfxHBN8.d.ts} +30 -2
- package/dist/query/fetchers/index.cjs +9 -4
- package/dist/query/fetchers/index.cjs.map +1 -1
- package/dist/query/fetchers/index.d.cts +2 -2
- package/dist/query/fetchers/index.d.ts +2 -2
- package/dist/query/fetchers/index.js +9 -4
- package/dist/query/fetchers/index.js.map +1 -1
- package/dist/query/hooks/index.cjs +9 -4
- package/dist/query/hooks/index.cjs.map +1 -1
- package/dist/query/hooks/index.d.cts +2 -2
- package/dist/query/hooks/index.d.ts +2 -2
- package/dist/query/hooks/index.js +9 -4
- package/dist/query/hooks/index.js.map +1 -1
- package/dist/query/index.cjs +9 -4
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +4 -4
- package/dist/query/index.d.ts +4 -4
- package/dist/query/index.js +9 -4
- package/dist/query/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -2267,10 +2267,15 @@ function resetProfile(config, deletePdsData, options = {}) {
|
|
|
2267
2267
|
});
|
|
2268
2268
|
}
|
|
2269
2269
|
function deleteAccount(config, deletePdsData, options = {}) {
|
|
2270
|
-
return apiWrite(
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2270
|
+
return apiWrite(
|
|
2271
|
+
config,
|
|
2272
|
+
"/api/profile/account",
|
|
2273
|
+
"DELETE",
|
|
2274
|
+
{
|
|
2275
|
+
body: { deletePdsData },
|
|
2276
|
+
...options
|
|
2277
|
+
}
|
|
2278
|
+
);
|
|
2274
2279
|
}
|
|
2275
2280
|
|
|
2276
2281
|
// src/query/hooks/use-destructive.ts
|