@createiq/backend 1.0.31 → 1.0.32
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/client/sdk.gen.ts +18 -1
- package/client/types.gen.ts +19 -0
- package/dist/index.cjs +14 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +22 -1
- package/dist/index.d.ts +22 -1
- package/dist/index.js +13 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/swagger.json.sha256 +1 -1
package/dist/index.js
CHANGED
|
@@ -724,6 +724,18 @@ var setElectionApproval = (options) => {
|
|
|
724
724
|
}
|
|
725
725
|
});
|
|
726
726
|
};
|
|
727
|
+
var getPotentialReplacementApprovers = (options) => {
|
|
728
|
+
return (options.client ?? client).get({
|
|
729
|
+
security: [
|
|
730
|
+
{
|
|
731
|
+
name: "Authorization",
|
|
732
|
+
type: "apiKey"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
url: "/api/v1/subAccounts/{subAccountId}/negotiations/{negotiationId}/getPotentialReplacementApprovers",
|
|
736
|
+
...options
|
|
737
|
+
});
|
|
738
|
+
};
|
|
727
739
|
var deleteApprovalComment = (options) => {
|
|
728
740
|
return (options.client ?? client).delete({
|
|
729
741
|
security: [
|
|
@@ -3792,6 +3804,7 @@ export {
|
|
|
3792
3804
|
getOriginalAnswersForForkNegotiation,
|
|
3793
3805
|
getOtherPartyAnswers,
|
|
3794
3806
|
getPartyAnswers,
|
|
3807
|
+
getPotentialReplacementApprovers,
|
|
3795
3808
|
getPotentialUsers,
|
|
3796
3809
|
getPreset,
|
|
3797
3810
|
getPreviousActiveUsers,
|