@singi-labs/sifa-sdk 0.12.43 → 0.12.44
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-DFSDtTFz.d.cts → index-BFO1nfxZ.d.cts} +1 -1
- package/dist/{index-BsIdD2su.d.ts → index-BzfWwovU.d.ts} +10 -3
- package/dist/{index-CIQinrgP.d.ts → index-C-k5JuRG.d.ts} +1 -1
- package/dist/{index-ti9RAkMn.d.cts → index-DRSrcDoq.d.cts} +10 -3
- package/dist/index.cjs +14 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +14 -2
- package/dist/index.js.map +1 -1
- package/dist/{org-EA4mshbf.d.ts → org-Bijq3reg.d.ts} +14 -4
- package/dist/{org-C0OTQnnV.d.cts → org-D_0P4klw.d.cts} +14 -4
- package/dist/query/fetchers/index.cjs +6 -1
- 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 +6 -1
- package/dist/query/fetchers/index.js.map +1 -1
- 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.map +1 -1
- package/dist/query/index.cjs +6 -1
- package/dist/query/index.cjs.map +1 -1
- package/dist/query/index.d.cts +6 -6
- package/dist/query/index.d.ts +6 -6
- package/dist/query/index.js +6 -1
- package/dist/query/index.js.map +1 -1
- package/dist/schemas/index.cjs +13 -1
- package/dist/schemas/index.cjs.map +1 -1
- package/dist/schemas/index.d.cts +6 -2
- package/dist/schemas/index.d.ts +6 -2
- package/dist/schemas/index.js +13 -1
- package/dist/schemas/index.js.map +1 -1
- package/package.json +1 -1
package/dist/query/index.cjs
CHANGED
|
@@ -439,7 +439,12 @@ function createEndorsement(config, data, options = {}) {
|
|
|
439
439
|
return apiWriteCreate(config, "/api/endorsement", data, options);
|
|
440
440
|
}
|
|
441
441
|
function confirmEndorsement(config, data, options = {}) {
|
|
442
|
-
return apiWriteCreate(
|
|
442
|
+
return apiWriteCreate(
|
|
443
|
+
config,
|
|
444
|
+
"/api/endorsement/confirm",
|
|
445
|
+
data,
|
|
446
|
+
options
|
|
447
|
+
);
|
|
443
448
|
}
|
|
444
449
|
|
|
445
450
|
// src/query/fetchers/endorsement-inbox.ts
|